Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Good jQuery Autocomplete that is not part of jQuery UI?

Is there a good alternative to jQuery UI autocomplete?

I couldn't find one on the internet. jQuery UI is far too big for just using the autocomplete, and I don't want to roll yet another autocomplete on my own.

Answer: jQuery UI custom build for just autocomplete is 23,052 bytes. SO uses the original Zaefferer version that was adapted into jQuery UI autocomplete. I guess if it's good enough for SO, it's good enough for me, forked it from agarzola on GitHub.

like image 641
CamelCamelCamel Avatar asked Jun 07 '11 13:06

CamelCamelCamel


People also ask

Why is jQuery autocomplete not working?

autocomplete is not a function" jQuery error occurs for multiple reasons: Forgetting to include the jQuery UI library. Loading the jQuery UI library before the jQuery library. Loading the jQuery library twice.

What is autocomplete in jQuery explain with example?

Advertisements. Auto completion is a mechanism frequently used in modern websites to provide the user with a list of suggestions for the beginning of the word, which he/she has typed in a text box. The user can then select an item from the list, which will be displayed in the input field.

What is UI autocomplete?

Autocomplete mechanism is frequently used in modern websites to provide the users a list of suggestion while typing the beginning word in the text box. It facilitates the user to select an item from the list, which will be displayed in the input field.


1 Answers

A Google search for 'jquery autocomplete' produced this DevBridge one (and all the others):

http://www.devbridge.com/projects/autocomplete/jquery/

This is also the most highly upvoted non-accepted answer in the possible duplicate of this question.

like image 140
Town Avatar answered Sep 19 '22 01:09

Town