Jquery Plugin Autocomplete
# jQuery Autocomplete
The jQuery Autocomplete plugin searches and filters based on user input, allowing users to quickly find and select from a preset list of values. By giving focus to the Autocomplete field or typing characters into it, the plugin begins searching for matching entries and displays a list of values to choose from. By typing more characters, the user can filter the list for better matches.
This plugin is now part of (#), and the standalone version will no longer be updated. The current version is 1.6.
Visit the (https://jqueryui.com/autocomplete/) to download the jQuery Autocomplete plugin.
For more details about Autocomplete, please refer to the API documentation (#).
## Example Demo
jQuery Autocomplete plugin demo.
jQuery UI Autocomplete - Default functionality $(function() { var availableTags = [ "ActionScript", "AppleScript", "Asp", "BASIC", "C", "C++", "Clojure", "COBOL", "ColdFusion", "Erlang", "Fortran", "Groovy", "Haskell", "Java", "JavaScript", "Lisp", "Perl", "PHP", "Python", "Ruby", "Scala", "Scheme" ]; $( "#tags" ).autocomplete({ source: availableTags }); });
(#)
YouTip