I have a problem getting this to fire on iPhone 4, any ideas?
$('select').change(function () {
alert('you changed this');
});
Have you tried with:
$('select').live('change',function () {
alert('you changed this');
});
Try this
$('select').bind('change',function () {
alert('you changed this');
});
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With