M
Mark Smith
If I have a drop down box like this.
<select>
<option>hello</option>
<option>this</option>
<option>is</option>
<option>test</option>
<option>test</option>
</select>
And I highlight the box and type "this", the "this" option is
selected.
However in IE6, the selected option jumps to whatever the last letter
you type was. For example typing "thi" would select "is".
Is there a way to correct this behavior with javascript?
Thanks
<select>
<option>hello</option>
<option>this</option>
<option>is</option>
<option>test</option>
<option>test</option>
</select>
And I highlight the box and type "this", the "this" option is
selected.
However in IE6, the selected option jumps to whatever the last letter
you type was. For example typing "thi" would select "is".
Is there a way to correct this behavior with javascript?
Thanks