Transforms a <select>
element into a cross-browser input field to manage tags. View Github repository
Returns an array of the entered tag values.
$(".tagger").simpleTagger("getTags");
Sets tags to be shown in the tagger.
$(".tagger").simpleTagger("setTags", ["HTML", "CSS"]);
Add a new tag to tagger.
$(".tagger").simpleTagger("addTag", "HTML");
Remove a specific tag from the tagger.
$(".tagger").simpleTagger("removeTag", "HTML");
Removes all the tags from the tagger.
$(".tagger").simpleTagger("removeTags");