jquery-combobox-plugin
v0.5.2
Published
jQuery plugin for converting a text input field into a combo box.
Downloads
7
Readme
jQuery Combo Box Plugin
THIS COMBOBOX IS HIGHLY SPECIFIC AND WILL NOT WORK FOR YOU
What is it?
Turns a <input type="text">
into a combo box.
- autocomplete
- keyboard controls
- most styles can be customized via css
- list of values can be changed dynamically
This is not intended for extending <select>
elements. Many other jquery "combo box"
plugins out there behave more like searchable select elements with disctinct labels and
values for each option. This plugin simply allows the user to choose from existing text
values or supply their own.
How to Use it
###HTML
###JavaScript
jQuery(function () {
jQuery('#combobox1').combobox([
'Apples',
'Oranges',
'Bananas'
]);
});