[ACCEPTED]-Jquery multiselect event handler-html
Accepted answer
Try using the onchange
event.
$('#mySelect').change(function(){
alert($(this).val());
});
0
Would .change() do the trick?
Certainly there 2 seems to be a working demo of a multi-select 1 box on that page...
jquery 1.4: $("#mySelector").change(myChangeEvent);
before: $("#mySelector").bind("change", myChangeEvent);
function myChangeEvent(e){
}
0
Source:
stackoverflow.com
More Related questions
Cookie Warning
We use cookies to improve the performance of the site. By staying on our site, you agree to the terms of use of cookies.