1.2.0 • Published 4 years ago

autocomplete-choice-input v1.2.0

Weekly downloads
3
License
MIT
Repository
github
Last release
4 years ago

Autocomplete Choice Input Build Status

This jQuery plugin was created, because I needed to create select box with thousand of options. Rendering all of them was slow and not necessary, because it is impossible to scroll through all the options. I needed something with select box functionality without rendering all options. So I created this plugin.

Documentation and examples

You can find documentation, examples and FAQ on http://alesjiranek.github.com/autocomplete-choice-input

Basic Usage

In default selected values are submitted as array.

<input type="text" name="example1" class="a-c-i" data-options="{1:"Option 1", 2:"Option 2"}">

$(document).ready(function(){
    $('.a-c-i').autocompleteChoiceInput();
});

Options

You can find list of all options and examples of their usage on http://alesjiranek.github.com/autocomplete-choice-input