🔔 Alert..!! Get 2 Month Free Cloud Hosting With $200 Bonus From Digital Ocean ACTIVATE DEAL

Aircomplete is an easy-to-use, AJAX-enabled jQuery Autocomplete & Typeahead plugin which automatically suggests values from the character(s) typed in the input field.

Autocomplete typeahead

Documentation

aircomplete

Simple-ish autocomplete/typeahead jquery plugin

Installation

Just include the Javascript file after you've included jQuery.

Basic Usage:

<h3>Basic Example</h3> <label for="basic-example">Start typing a planet name</label> <input type="text" id="basic-example"/>
$("#basic-example").aircomplete({     data: [         "Mercury",  "Vulcan",          "Venus",    "Earth",         "Mars",     "Counter-Earth",         "Ceres",    "Jupiter",         "Saturn",   "Uranus",          "Neptune",  "Planet X",         "Pluto",    "Nibiru"     ],     onSelect: function(data){         return data;     },     minSearchStringLength : 1// show results after a single character is entered }); 

You May Also Like