Home

Awesome

<a href='http://easyautocomplete.com' >EasyAutocomplete - plugin for jQuery</a>

Jquery autocomplete plugin

demo

EasyAutocomplete is a highly configurable jquery autocomplete plugin:

If you are interested in using this jQuery autocomplete plugin on your site, you can find out more details in the <a href="http://easyautocomplete.com/">EasyAutocomplete - jQuery autocomplete - homepage</a>. You can find there <a href='http://easyautocomplete.com/guide' >full documentation and easy guide</a> on how to use EasyAutocomplete plugin.

Quick example

Javascript:

var options = {

  url: "location_to_file.json",

  getValue: "name"
};

$("#countries").easyAutocomplete(options);

JSON:

[
  {"name": "Afghanistan", "code": "AF"},
  {"name": "Aland Islands", "code": "AX"},
  {"name": "Albania", "code": "AL"},
  {"name": "Algeria", "code": "DZ"},
  {"name": "American Samoa", "code": "AS"}
 ]

HTML:

<input id="countries"/>

Demo

There are a couple of examples in folder: demo.

Build

To build project(javascript and css) run:

grunt build

File location:

Run tests

To execute all unit tests, use:

grunt test

License:

Code released under <a href='http://github.com/pawelczak/EasyAutocomplete/blob/master/LICENSE.txt' >the MIT license</a>.