gabehollombe / jquery-select-autocomplete
- Source
- Commits
- Network (4)
- Issues (0)
- Downloads (0)
- Wiki (1)
- Graphs
-
Branch:
master
Gabe Hollombe (author)
Thu Nov 05 21:12:45 -0800 2009
| name | age | message | |
|---|---|---|---|
| |
LICENSE | Mon Jan 26 13:40:14 -0800 2009 | |
| |
README.markdown | Thu Nov 05 21:12:45 -0800 2009 | |
| |
autocomplete.css | Fri Jan 23 14:20:25 -0800 2009 | |
| |
index.html | Thu Nov 05 21:11:51 -0800 2009 | |
| |
jquery-1.3.1.min.js | Fri Jan 23 14:20:25 -0800 2009 | |
| |
jquery.autocomplete.js | Mon Jan 26 13:23:59 -0800 2009 | |
| |
jquery.autocomplete.pack.js | Fri Jan 23 14:20:25 -0800 2009 | |
| |
jquery.select-autocomplete.js | Tue Nov 03 11:06:30 -0800 2009 |
README.markdown
jQuery Select Autocomplete
jQuery Select Autocomplete lets you turn an HTML <select> tag into an auto-complete text input box and hides the select node in the DOM. When a user types in the text input box, all matching options from the select list will show up in the auto-complete list and when one option is selected, the select control's selected item is set to the item picked from the auto-complete list. This means that you don't have to change your processing code at all; just look for the select list`s value the same way you already were.
Assuming you have one or more select lists with a class of "autocomplete", just write:
$(select.autocomplete).select_autocomplete();
Example
See index.html for a working example.
License
License is MIT. See LICENSE file.
Todo
- figure out if there's a way to automagically manage the dependency on jquery.autocomplete
