Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What is a current good version of the autocomplete for jquery?

I saw this post http://stackoverflow.com/questions/188442/whats-a-good-ajax-autocomplete-plugin-for-jquery

However I can't downgrade the UI for other parts of the site, and autocomplete is not a part of the newer 1.7.

Suggestions?

share|improve this question
5  
autocomplete is part of jQuery UI v1.8, now current. – Cheeso Nov 8 '10 at 2:20

7 Answers

up vote 21 down vote accepted

This is a very nice auto-complete textboxlist for jQuery: http://devthought.com/projects/jquery/textboxlist/

share|improve this answer
1  
This is not jquery, this is mootools, I've had bad experiences in conflicts mixing the 2 libs – matthewb Aug 10 '09 at 17:34
2  
I updated the link to the jquery one. From the same people, same design, just using jquery instead of mootools. The blog entry i linked to just linked to the mootools one instead. – Max Schmeling Aug 10 '09 at 17:48
2  
Am I right in supposing there is no non-commercial version available? – LaundroMat Aug 21 '11 at 19:16
1  
Right from the Homepage: "You can use and modify TextboxList freely for any non-commercial use. Otherwise you need to purchase a one-time per-domain license of $20, by clicking on the link on the right." – Johnnycube Oct 21 '11 at 14:26
2  
The best one I have found is chosen: harvesthq.github.com/chosen – just__matt Mar 14 '12 at 21:41
show 2 more comments

Chosen is the by far best now: http://harvesthq.github.com/chosen/

share|improve this answer
4  
This doesn't support new entries the way an autocomplete box does. It's chroming for a select box and has all the limitations of that UI element. – Doug Aug 23 '12 at 18:38
1  
@Doug: which is perfect for my needs. I actually want to restrict the user from being able to create new entries. I suppose some kind of setting in the plugin to allow/disallow new entries would be awesome. – Tash Pemhiwa Jan 22 at 16:26
thanks for introducing me to this plugin! :) – elias Feb 1 at 20:30
@Tash: nicolasbize.github.com/magicsuggest is kind of like chosen but you can choose to restrict free entries. – jothetomato Feb 15 at 12:08
@m_oLogin: Thanks, will play with it :) – Tash Pemhiwa Feb 18 at 13:05
show 1 more comment

Here's another from devbridge, which supports Ajax requests: http://www.devbridge.com/projects/autocomplete/jquery/

share|improve this answer

Here is another jQuery autosuggest from Drew Wilson. It is a cool plugin and is non-commercial too.

share|improve this answer

I'm surprised nobody has mentioned jQuery Select2 - it seems as though it has by far the most configurable options

http://ivaynberg.github.com/select2/

share|improve this answer
This puts all the other ones to shame. – Tony BenBrahim yesterday

Might also want to look at this:

https://github.com/twitter/typeahead.js

share|improve this answer

I have been using the one from bassistance.de (http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/) and find it to be useful in terms of extensibility and usability. It does have some strangeness if you use it in "multiselect" mode and start deleting items out of the list but I get around that by having an html select box with multiselect enabled on the "source" and "destination" and then set the options from the source box as the source to the autocomplete. It works great!

This plugin allows you to set your source to an AJAX or static source and then provide custom formatters to pull the text/value out when you need to.

share|improve this answer
I am trying to reference 30K records in my DB and this script mixed with FF is freezing it. Code: $("#create-new-drink").autocomplete("/units/autocomplete",{max:5,minChars:3}); – matthewb Aug 10 '09 at 17:41
I've used and like this. – Will Hancock Mar 22 '12 at 9:49

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.