Forum Moderators: open
I have two select lists:
<select id="info" onChange="getinfo()" />
and
<select id="info2" onChange="getinfo2()" />
When someone selects an option, it dynamically loads content in an iframe. Works no problem.
Except that in IE7, it won't let me show more than one list!
The first list displays correctly, but the second one all the options appear as regular text. It works fine in Firefox though.
If I remove one list and only show the other, that works. But as soon as two lists are on the page, the second always breaks and is displayed as normal text.
Any ideas on this bug?
One thing to note, though... select elements can not be empty. That is, valid select elements must have at least one option element. From your example, you are closing the select element within the opening tag. That's invalid.