Is there a reliable way (CSS, JQuery, etc.) to completely hide a disabled
<option disabled="disabled"> on all major browsers?
I need it to be completely hidden instead of being only greyed out (like in IE).
UPDATE: There is no crossbrowser way of hiding disabled options. If you need an option removed, use Jquery’s detach() as pointed out below by Kevin B. disabled options are no good thing.
Yes, remove it from the select until you want to show it.
DEMO