Question

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();
Was it helpful?

Solution

Use the assignedTags method

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

See this fiddle for an example.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top