Unlike FireFox, Internet Explorer doesn't support select option disabled attribute in the drop down menu.
How do you handle this issue in a simple method? Javascript or php solutions?
I want to set up certain options from the drop down menu to be disabled, if some php condition matched.
<option ... <?php if (...) { ?> disabled<?php ?>> get the 20% raise this year</option>
It works in the firefox but not in the internet explorer.
Thanks!