Problem
This is hard to explain, so please bear with me. I came across a curious scenario today that I solved, but I'm not sure why my solution works.
I created a group of selects and wrote a script that constrains you from selecting the same option more than once by removing the selected option from the other select lists.
However in IE(including IE9), the option list was displaying the wrong option, but once selected it would display the right option.

Re-create the error
In my first script you can get to this state by doing the following:
NOTE: This is IE only. Works fine in Chrome
Script: http://jsfiddle.net/s6F4h/37/
- In the first drop down choose 3
- In the second drop down choose 1
- In the first drop down choose 1 (should not be an available option)
- Notice that the selected value is 2!
- Notice that changing your selected value in the second drop down also produces different values than those presented.
- Lastly, notice that the DOM is displaying the correct values

Fix the error (magically)
Now for my fix which I found by random guess work...
Script: http://jsfiddle.net/s6F4h/36/
Creating my selects like this causes the strange behavior:
var $S1 = $('<select class="question" />');
Creating my selects like this corrects that behavior:
var $S1 = $('<select />', {'class': 'question'});
Follow Up
- What is the difference in the above two jQuery objects?
- How in the world can IE show one thing in its DOM and another on the actual page (I know CSS content can do this, but there's no CSS involved)? Wouldn't be so bad it this was just an IE6-8 thing, but it's reproducible in IE9!
- Could it be an IE bug or a jQuery bug?
Lastly, maybe I've just done something incredibly stupid, and in my hysteria have concocted some absurd conclusion. Please, gently, inform me if I have done so.
selectformat that you said caused the problem) seem fine to me in IE9. – James Allardice Jul 2 '12 at 18:13> option:selectedis not syntactically valid, is it? I don't think you can start a selector with>like that (and it's not necessary anyway). – Pointy Jul 2 '12 at 18:13