views:

68

answers:

4

User enters tag in the textbox. The textbox is a live search as the user types it brings up suggester results based on the tags already in the system, simiral to stackoverflow tag input :) Tags are separated by commas, so when a user selects a result from the livwe search, it automatically populates the text and a trailing comma

does anybody know such plugin?

+1  A: 

Autocomplete is now part of jQuery UI 1.8.

Justin Ethier
A: 

jquery 1.4.x and jqueryui 1.8.x now support a built in autocomplete

The results must be formatted as a json array coming back from your script

http://docs.jquery.com/UI/Autocomplete

There is also another popular one here: http://www.devbridge.com/projects/autocomplete/jquery/

mike clagg
A: 

This question has a couple links which you might like. Otherwise try a google search for "jquery facebook autocomplete"

http://stackoverflow.com/questions/1191807/facebook-style-jquery-autocomplete-plugin

tster
A: 

This is the original JQuery autocomplete plugin before it was moved to JQueryUI. If you are looking to serve just JQuery but not JQueryUI, use this one.

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

James Lawruk