Auto select (Incremental search, Auto-complete) an item from a dropdown as user keys in






4.35/5 (15 votes)
HTML lacks the auto-select feature for dropdowns. Users familiar with desktop applications expect browsers to select the correct item from a dropdown list as they key in. I am trying to solve this using simple JavaScript.
Introduction
Normally, HTML does not support nearest match. It always treats each key stroke as the starting of a new search. But, that is useless. If I type 'C', it will go to the first item that starts with C; if I type 'O' immediately, it will go to the first item that starts with 'O'. But in this implementation, it will go to 'CO'.
If the user misspelled, the user can use the backspace key to delete the char 'O' and type another letter to select another item. The user can wait for 3 seconds to start a fresh search, or use backspace to delete the entire search key, or shift delete to restart again.
It finds the nearest possible match. So, it does not need to be in any order.
- Just include the .js file in the target HTML:
- Add these events to your dropdown field:
onfocus
resets the search text.onkeydown
handles certain keys (left, right, top, down, shift, delete, backspace) and takes the appropriate action.onkeypress
handles the selection of an item from the list.onkeyup
ignores the event asonkeypress
has already handled the key stroke.- Open the HTML file using IE.
- Type 'a', it will take you to the first item that starts with 'a'. Then, type 'b'; this will take you to the first item that starts with 'ab'. This uses a nearest match algorithm. So, the list does not need to be in any order.
- The user can search a string within a dropdown list.
- It automatically selects the list item that starts with the search key.
- The user can use backspace to delete a char before the current index from the search key.
- The user can use the delete button to delete a char after the current index from the search key.
- The user can use left or right arrow keys to move back and forth over the search key, and use delete or backspace to delete a char; the script will automatically find the item in the list, or enter a new char from the current index.
- Pressing the Shift and Delete keys will remove the search key and start over the search again.
- The user can see the search key on the Windows status bar. It shows the current index too.
<script language="JavaScript" src="dropdown.js"></script>
onfocus="this.enteredText='';" onkeydown="return handleKey();"
onkeyup="event.cancelbubble=true;return false;" onkeypress="return selectItem();"
For example:
<select name="test" onfocus="this.enteredText='';" onkeydown="return handleKey();"
onkeyup="event.cancelbubble=true;return false;" onkeypress="return selectItem();">
I am adding Hugh Nelson's suggestion also here, so that it is available for every one. If you want to change all the dropdowns in a page to have this functionality, call the following in the onload
event:
function setSelectEvents() {
// set javascript event attributes
// for all select items in the current page
var selects = document.getElementsByTagName("select");
var arrOnfocus = new Array(); // array of onfocus functions
var arrOnkeydown = new Array(); // array of onkeydown functions
var arrOnkeyup = new Array(); // array of onkeyup functions
var arrOnkeypress = new Array(); // array of onkeypress functions
for (var i = 0; i < selects.length; i++) {
// we need to ensure that
// we don't overwrite any existing function
// save index to array as an element attribute
// (using i directly did not work)
selects[i].title = i;
// onfocus
if(typeof(selects[i].onfocus) == 'function') {
// there is a pre-existing function
// save pre-existing function
arrOnfocus[selects[i].title] = selects[i].onfocus;
selects[i].onfocus =
function() { arrOnfocus[this.title](); this.enteredText=''; }
// set event to call our code plus the pre-existing function
}
else { // there is no pre-existing function
selects[i].onfocus = function() { this.enteredText=''; }
}
// onkeydown
if(typeof(selects[i].onkeydown) == 'function') {
// there is a pre-existing function
// save pre-existing function
arrOnkeydown[selects[i].title] = selects[i].onkeydown;
selects[i].onkeydown =
function() { arrOnkeydown[this.title](); return handleKey(); }
// set event to call our code plus the pre-existing function
}
else { // there is no pre-existing function
selects[i].onkeydown = function() { return handleKey(); }
}
// onkeyup
if(typeof(selects[i].onkeyup) == 'function') {
// there is a pre-existing function
// save pre-existing function
arrOnkeyup[selects[i].title] = selects[i].onkeyup;
selects[i].onkeyup =
function() { arrOnkeyup[this.title]();
event.cancelbubble=true;return false; }
// set event to call our code plus the pre-existing function
}
else { // there is no pre-existing function
selects[i].onkeyup =
function() { event.cancelbubble=true;return false; }
}
// onkeypress
if(typeof(selects[i].onkeypress) == 'function') {
// there is a pre-existing function
// save pre-existing function
arrOnkeypress[selects[i].title] = selects[i].onkeypress;
selects[i].onkeypress =
function() { arrOnkeypress[this.title](); return selectItem(); }
// set event to call our code plus the pre-existing function
}
else { // there is no pre-existing function
selects[i]. önkeypress = function() { return selectItem(); }
}
}
}