I'm looking for a jQuery plugin that either replaces or improves the HTML <select> tag in Internet Explorer 6.
Think of this situation:
<select name="test">
<option>Apple</option>
<option>Apricot</option>
<option>Lemon</option>
<option>Peach</option>
<option>Pear</option>
<option>Raspberry</option>
</select>
When in IE7 or later (or Firefox) you select the resulting select box and type "APR" you will select "Apricot", because it starts with APR.
In IE6 you end up at Raspberry, because at "A" it selects "Apple", then "P" -> "Peach" and finally R -> "Raspberry".
Now what my client is looking for is IE7 behaviour in IE6. Any chance that there is a plugin for jQuery that can save me from writing my own implementation of a select box?
I have found several, but they either lack sensible keyboard support altogether or they don't work with IE6.
(And: No, Updating to IE7 is not yet an option.)