Search code examples
jquerytagstag-it

How can I get the name of each tag in tag-it by jquery?


Currently I am using tag-it to my work. I have create tagbox & i can write on tag by using : https://github.com/aehlke/tag-it. But I need to know the value of each tag in that tagbox. How can I get this ? Please suggest me.

Html code :

<ul id="myTags" ></ul>
<input type="hidden" id="tag" style="width:400px;height:40px;" value=""  placeholder="Add tags" />

Jquery code :

$("#myTags").tagit();

Solution

  • Use the assignedTags method

    var tags = $("#myTags").tagit("assignedTags");
    

    See this fiddle for an example.