I am having a multi select box in a JSP page which has some options and is disabled.
<select id="mySelectBox" multiple disabled>
<option value="first" selected>First</option>
<option value="second">Second</option>
<option value="third">Third</option>
<option value="fourth" selected>Fourth</option>
</select>
I have the first and the fourth options selected, but they are not highlighted in IE They are properly highlighted when I use Firefox.
Is there any solution or workaround for this?
EDIT: My DOCTYPE is <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
But even with that I don't see any difference.