Hi. I've done some digging, and I can't seem to find anything on this specific... kind of strange problem I'm having.
When creating a dropdown menu (using "select" in HTML), the menu will always default to the last option in the list. This happens whether or not I use the "selected" keyword for any of the options.
elect name="ecolor" tabindex="7">
<option value="blue" selected>Blue</option>
<option value="green">Green</option>
<option value="brown">Brown</option>
<option value="hazel">Hazel</option>
<option value="black">Black</option>
<option value="gray">Gray</option>
</select>
In this example, the list will always have "Gray" selected when it is rendered. Is there any way to prevent this?