| Article: |
Cooking with JavaScript & DHTML | |
| Subject: | Select Type-Ahead | |
| Date: | 2004-04-08 15:36:32 | |
| From: | vhb | |
|
Response to: Select Type-Ahead
|
||
| Correction, the typed selection DOES NOT stick if the dropdown is open and you Tab off the control. | ||
Showing messages 1 through 1 of 1.





typeAhead()function that readsvar charCode = evt.keyCode;, add the following line:if (charCode == 9) { return true; }That appears to do the trick.