jQuery/AJAX type-ahead/auto-complete

Posted by Prasad on Stack Overflow See other posts from Stack Overflow or by Prasad
Published on 2010-04-28T11:32:01Z Indexed on 2010/04/28 11:43 UTC
Read the original article Hit count: 504

Filed under:
|
|

I have read several articles/questions/forums discussing the best auto-complete plugin for jQuery. After trying several good ones, I've realized a flaw in most.

  1. If you are looking up countries and type 'In', a couple of countries show up. If you continue typing I-n-d-i-a, this results in 5 AJAX calls (see http://www.freeimagehosting.net/uploads/6f1bcd69e1.png) its quite natural that India is a subset of In, so why call again? We need to simply filter the retrieved list client-side. Anyone knows about such an implementation?

  2. What is the status of the Jquery Autocomplete feature? I read at StackOverflow that it is no longer available with Jquery; but the Jquery website has a 'New' mark besides the link to Autocomplete.

Thanks

© Stack Overflow or respective owner

Related posts about jQuery

Related posts about jquery-ajax