We encountered a small but annoying bug with the Apple iPad and Mobile Safari — a disabled drop down menu option is selectable! Well the simplest fix for us (since we had a alternate iPad version) was to stick this little jQuery script within our header and load after the whole page has loaded. Hopefully it helps someone else out!
<script type=”text/javascript”>
jQuery(window).load(function () {
jQuery(‘select option[disabled]’).remove();
});
</script>