Skip to content

mycall/Combo-Box-jQuery-Plugin

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

34 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

jQuery Combo Box Plugin

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'
    ]);
 
});

About

jQuery plugin for converting a text input field into a combo box.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 79.5%
  • CSS 20.5%