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...
Post a Comment for "Jquery Click Event On Select Option Not Working With Jquery Mobile Framework"