HTML:
<select id="resource-list" onchange="js_resource_filter_changed()" name="resource-list">
<option value="site">This is option 1</option>
<option value="154" selected="selected">This is option 2</option>
</select>
CSS:
#resource-list option[value="site"] {display: none !important;}
My goal is to hide option 1 using only CSS. This work well with IE9 and above + Chrome and FF but not for IE8 and Safari. I wondering if the code could be adapted or if is impossible to hide in all browser a specific select option.
You can test here: http://jsfiddle.net/cX9gC/