I have a multiple select tag, and i need to write the function onclick of it's options, becouse i need to get the value of last clicked option, but when i wrote the following
$("#multiple_select option").click(function()
{
var val = $(this).val();
alert(val);
});
it doesn't work in IE.
Whant is the problem?
Thanks
UPDATE
i need exactly click event, because i wrote a fuction onclick event allready(demo here), and i need to fix last changed element's value, which is inpossible to make without click event(i think)