<select> <option value="1">first<option> <option value="2">second<option> <option value="3" disabled="disabled">third<option> <option value="4">forth<option> </select>If this select list were rendered on an iPhone or iPad you would be able to select the "thrid" option. It's not a Webkit bug, since the same select list will render perfectly on other tablets like the BlackBerry PlayBook.
Known Workarounds: Two. You'll need to either need to remove the options, or inform the user after their selection that it isn't valid (not recommended for usability purposes)
Related Issues: None.
2 comments:
this syntax shoulds work :
option disabled="disabled" value="3"
A jQuery based workaround:
http://spittingcat.blogspot.co.uk/2012/11/ios-drop-down-list-bugfix.html
Post a Comment