Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there any open source tag editor for jQuery that works like the tag editor in stack overflow?

share|improve this question

closed as not constructive by Bill the Lizard Feb 15 at 3:38

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

9 Answers

up vote 10 down vote accepted

This library is really nice:

https://github.com/xoxco/jQuery-Tags-Input

Supports autocomplete too, and it plays well with jQuery UI (using it inside a jQuery UI Dialog at the moment).

share|improve this answer

I have been looking at a bunch of options. None of them seemed to fit exactly what I was looking for. Here are are least some of the things I found.

Hope it helps

+--------------------+------+-----+-----+-------+-----+
|Toolkit             |Tag-it|Tagit|Xoxco|Tagedit|Widen|
+--------------------+------+-----+-----+-------+-----+
|Setting tags        |-     |+    |+    |?      |+    |
|programmatically    |      |     |     |       |     |
+--------------------+------+-----+-----+-------+-----+
|Getting tags out as |+     |+    |-    |?      |+    |
|an array            |      |     |     |       |     |
+--------------------+------+-----+-----+-------+-----+
|Editting existing   |-     |-    |-    |+      |+    |
|tags                |      |     |     |       |     |
+--------------------+------+-----+-----+-------+-----+
|Tab / cursor        |-     |-    |-    |-      |-    |
|selecting existing  |      |     |     |       |     |
|tags                |      |     |     |       |     |
+--------------------+------+-----+-----+-------+-----+
|Sorting tags        |-     |+    |-    |+      |+    |
+--------------------+------+-----+-----+-------+-----+
|Placeholder text    |-     |-    |+    |-      |-    |
+--------------------+------+-----+-----+-------+-----+
|Supporting comma    |-     |+    |-    |+      |+    |
|inside tags         |      |     |     |       |     |
+--------------------+------+-----+-----+-------+-----+
share|improve this answer

The tag editor uses an "Autocomplete" feature - jQueryUI recently added this in version 1.8. It appears to be based on the classic jQuery autocomplete plugin by Jörn Zaefferer (I haven't compared the source, but the API seems pretty similar).

share|improve this answer
it dosen't support per word – Alon Gubkin Mar 28 '10 at 2:21
True - I would also like to see one that does per-word matching. I've done some searches but they came up empty. – James Kolpack Mar 28 '10 at 3:03

you can try this: http://blog.crazybeavers.se/wp-content/Demos/jquery.tag.editor

share|improve this answer
That link doesn't work for me, but this one does: blog.crazybeavers.se/wp-content/Demos/jquery.tag.editor – Chris Jan 13 '12 at 5:07

Read This too:

http://stackoverflow.com/questions/967199/jquery-auto-suggest-serverside

btw the best autosuggest for me is the one from www.brandspankingnew.net

http://www.brandspankingnew.net/archive/2006/08/ajax_auto-suggest_auto-complete.html

share|improve this answer

I doubt this is true for original poster, but for people who want end users to pick from a fixed universe of tags via autocomplete (without being able to add their own new tags), this is a potentially slick jQuery plugin:

http://loopj.com/jquery-tokeninput/

share|improve this answer
Note, set the AllowFreeTagging boolean config to true and you get to insert new tags as well. It's undocumented, but you can search the git repo for some details github.com/loopj/jquery-tokeninput/pull/367 – Frankston Ralphington III Jan 18 at 22:14

try with http://tagedit.webwork-albrecht.de/ it has also some good features.

share|improve this answer

Look at Tagedit it has autocomplete, edit existing tags, enter your own tags with a simple configurable API that you would expect in such as plugin

share|improve this answer

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