| Sign In/My Account | View Cart |
| Article: |
Cooking with JavaScript & DHTML | |
| Subject: | Select Type-Ahead | |
| Date: | 2004-04-08 15:33:13 | |
| From: | vhb | |
| Great piece of code, I've been looking for this kind of functionality for some time. I notice that if the dropdown is open then the typed slection does stick if you Tab off the control. Is there anyway to fix that? Thanks. | ||
Showing messages 1 through 2 of 2.
typeAhead() function that reads var charCode = evt.keyCode;, add the following line:if (charCode == 9) { return true; }