Answer the question
In order to leave comments, you need to log in
Select elements not hiding in Opera 12
This code does not work only in Opera 12 (more precisely 12.13 1734).
<select>
<option>one</option>
<option>two</option>
<option style="display: none;">three</option>
</select>
Answer the question
In order to leave comments, you need to log in
For opera, use disabled
<select>
<option>one</option>
<option>two</option>
<option style="display: none;" disabled>three</option>
</select>
So it becomes unavailable for selection, but you need to hide it altogether.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question