Skip to content Skip to sidebar Skip to footer

JQuery Click Event On Select Option Not Working With JQuery Mobile Framework

I'm trying to fire a click event on my select options. This is working fine in FF/Safari if the selectlist is a normal multiselect box like this: http://jsfiddle.net/YZUBs/47/ Howe

Solution 1:

The click event on <option> isn't standard and thus not supported in all browsers.
You should use the onchange event instead of onclick.

You can read all the Q&A in this search, this is the subject for all of them...

Updated fiddle


Post a Comment for "JQuery Click Event On Select Option Not Working With JQuery Mobile Framework"