Skip to content

saravanajd/autocomplete

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

A lightweight, flexible, fast jQuery autocomplete/typehead plugin which automatically suggests matching items while typing keywords(search items) in a text field. This plugin enables your users to quickly filter, find and select items from huge lists such as user list, country list, search results and more.

Demo

You can view a live demo and some examples of how to use the various options here.

Add the class autocomplete

<input type="text" class="autocomplete" value="">

How do use autocomplete

const country = [{Id:1,Name:'India'},{Id:2,Name:'Japan'},{Id:3,Name:'US'}];
$('.autocomplete').autocomplete({
      dataSource: country,
      textProperty:'Name',
      valueProperty:'Id'      
    });
    

All default options to customize the autocomplete

$('.yearpicker').yearpicker({

  // Text property of an array
  textProperty: 'name',
  // value propertu of an array
  valueProperty: 'value',
  // array
  dataSource: [],
  // default selected value
  defaultValue: '',
  // if text is not matched then default value
  notMatchedValue: '',
  // delay in mili seconds seach text while typing
  keyboardDelay: 500,
  // show no result text if result is not match
  showNoResults: false,
  // show matched charected in bold
  markAsBold: true,
  // close the dropdown on select
  closeOnSelect: true,
  // allow custom value
  allowCustomValue: true,
  // add class for selected item
  selectedClass: '',
  // autocomplete container class
  wrapClass: ''
  
});

About

A lightweight, flexible, fast jQuery autocomplete/typehead plugin which automatically suggests matching items while typing keywords

Topics

Resources

License

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published