I'm using a small AJAX function to populate a dropdown list. When the response comes back from the server, it's already formatted in HTML as a series of options - I just stick it in an empty dropdown using innerHTML. This works in Firefox, but in IE, the first option is cut off before the text of the option.
So if the server sends me:
<option value="one">one</option>
<option value="two">two</option>
In IE, I get:
one</option>
<option value="two">two</option>
Does anyone have a solution for this? Thank you so much!