does anyone know of a lightweight alternative to the jquery-ui autocomplete plugin?

I'm not using any other jquery-ui components in the project (base lib is jquery 1.5.2). So dont feel I can justify adding 20k (minified) just for simple autocomplete on a single search field.

possible options so far are:

https://github.com/agarzola/jQueryAutocompletePlugin

http://code.google.com/p/jquery-autocomplete/

I dont want to roll my own plugin for such standard functionality .. surely there has to be a great solution out there already?

link|improve this question

1  
That 20k custom build shrinks to 7k when gzipped. Does your server support that? Is your jQuery coming from your server or a CDN? If its from your server, you could even combine the jQuery and jQueryUI into one file and serve it gzipped (one less HTTP connection). – chprpipr Jun 4 '11 at 20:23
I am of course using gzip and combining files to reduce http requests. But even so, there is still load extra code in that build that I dont need. Of course this in itself is not a significant additional overhead, but it all adds up. – zack Jun 4 '11 at 22:25
I'm seeking an alternative just because of this 20kb extra baggage. – Shawn Mclean Jul 15 '11 at 3:27
testing github.com/laktek/jQuery-Smart-Auto-Complete atm.. – zack Aug 26 '11 at 13:07
feedback

5 Answers

Sorry but I believe that your research of alternatives will not pay off.

For the other alternatives that you suggested the minified weight is 14.52 kb (agarzola) and 10KB (jquery-autocomplete), so 20KB from the most tested and complete solution doesn't seems like too much to me.

I think you should pay more attention to other important aspects of each plugin instead of the size when the difference is so tiny. Even more in the case of autocomplete functionality, which will consume bandwidth on each automatic search, so I guess I would not use autocomplete if my first concern were the bandwidth.

link|improve this answer
feedback

http://docs.jquery.com/Plugins/autocomplete#Example ;)

link|improve this answer
1  
This has been deprecated now. stackoverflow.com/questions/6794767/… – dan Aug 23 '11 at 10:37
feedback

I've had reasonable luck with 'UFD' ( http://code.google.com/p/ufd/ ), the Unobtrusive Fast-filter Dropdown. It's not perfect, but it might meet your needs.

link|improve this answer
feedback

yeah, Jquery UI is quiet chunky and is only worth using if you are going to use a bunch of plugins (draggable, resizable, etc. )

I've used : http://codeassembly.com/Unobtrusive-jQuery-autocomplete-plugin-with-json-key-value-support/ for my simple projects couple of times and I reckon its amazing.

you can also check this tutorial out http://return-true.com/2009/08/how-to-jquery-autocomplete/ but I think the first option is sufficient

link|improve this answer
feedback

Have you tried Ninja UI?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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