views:

8378

answers:

3

Im after a plugin to do autocomplete like facebook does in that you can select multiple items - similar to how tagging a stackoverflow question works.

Here are a couple I ran into:

Have you tried any of these? Were they easy to implement and customize?

+16  A: 

http://github.com/loopj/jQuery-Tokenizing-Autocomplete-Plugin

I just had a go at this one and it was really easy to implement using an asp.net page to output the JSON (from the search params) Then theres just a few lines of Javascript you need to create it (and the settings)

$(document).ready(function() {
        $("#Users").tokenInput("../Services/Job/UnassignedUsers.aspx?p=<%= projectID %>&j=<%= jobID %>", {
        hintText: "Begin typing the user name of the person you wish to assign.",
        noResultsText: "No results",
        searchingText: "Searching..."
    });
});
d1k_is
It also appears to have FireFox bugs
AnApprentice
@San also there is a known fix for clicking the item in IE. The only issue I found is that you cannot delete a token if your token limit is set to 1 and you use the delete or backspace key.
Dave Jarvis
+2  A: 

this one very googd! http://code.drewwilson.com/entry/autosuggest-jquery-plugin

webcgo
This is by far the best autosuggest plugin out there. It does not let the user add dupelicate records!
atmorell
A: 

This is the original JQuery autocomplete plugin before it was integrated into JQueryUI. If you are looking to serve just JQuery but not the entire JQueryUI library, use this one. I have used this one in the past and have been happy with it.

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

James Lawruk