Skip to content

mridah/autocomplete-lite

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 

Repository files navigation

autocomplete-lite

A lightweight autocomplete plugin using JQuery

DEMO

how to use :

  1. Load JQuery library
  2. Load autocomplete-lite.js library
  3. Initialize autocomplete on element and pass autocomplete list as an array
    $('#jquery_object').autocomplete_init(data_array);
    
EXAMPLE :
   <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
   <script src="autocomplete-lite.js"></script>

   <input type="text" id="autocomplete_input">

   <script>
       // initializing

       $('#autocomplete_input').autocomplete_init(["aaa", "bbb", "ccc", "ddd", "eee", "fff"]);
   </script>

About

A lightweight JQuery autocomplete plugin

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published