I have a multiple select tag, and I need to write the function onclick of it\'s options, because I need to get the value of last clicked option, but when I wrote the followi
$("#multiple_select").click(function(){ alert($(this).children("option:selected").val()); });
should to the thing