vote up 16 vote down star
20

I usually use jQuery as my JS library on my sites, and I would like to stick with it since I'm familiar with it.

I need to implement an AJAX autocomplete, mainly for suggesting search results. Here are a few I have found:

If you have tried any of these plugins, were you happy with them? Which one do you think is the most (and easily) customizable?

flag

71% accept rate

5 Answers

vote up 10 vote down check

I was recently on a similar mission and I eventually settled with jQuery UI's autocomplete. I am currently using jQuery UI 1.6rc2 and the autocomplete plugin is very well implemented and customizable. Here's an example:

<script type="text/javascript" src="jquery-1.2.6.js"></script>
<script type="text/javascript" src="ui.core.js"></script>
<script type="text/javascript" src="ui.autocomplete.js"></script>

<script type="text/javascript">
$('#search').autocomplete({
  url: 'suggestions.php',
  width: 300,
  max: 10,
  delay: 100,
  cacheLength: 1,
  scroll: false,
  highlight: false
});
</script>
link|flag
works great, very easy to read/modify the code too. thanks! – Murat Ayfer Oct 27 '08 at 3:09
how do you give it a function to execute when the user chooses a value from the autocomplete results? – Horace Loeb Dec 31 at 17:52
Thanks for this. I didn't know that it's merged to jQuery UI now. – jpartogi Jul 22 at 3:18
vote up 1 vote down

I tried a number of them, ended up with YUI's autocomplete (yes, for use with jQuery), it's worked well for me so far. You can use YUI's Loader facility to make it a fairly painless download and keep page loading times good.

link|flag
vote up 8 vote down

Autocomplete has been removed from the latest JQuery UI (since 1.6rc3). And the one you found in 1.6rc2, won't work with later version.

However, this guys has modified the code and make it work with later version.

http://pastie.org/362706

http://osdir.com/ml/jquery-ui/2009-01/msg00002.html

link|flag
3  
Why was it removed? – Mark Sep 21 at 6:21
I think because it wasn't being maintained. – LuckyLindy Nov 16 at 3:12
vote up 8 vote down

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

link|flag
I've been using this plugin and it is very flexible and provides good functionality. – ChrisP Jul 29 at 16:19
vote up 0 vote down

This is quite easy-simple to integrate .This has got a lot of options with it

http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/ http://jquery.bassistance.de/autocomplete/demo/

link|flag

Your Answer

Get an OpenID
or

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