Skip to content Skip to sidebar Skip to footer

Jquery Tagit - No Such Method 'add'

Whilst searching for a away to add a tag to the jquery tagit, I came accross the following snippet: $('.tagfilter').click(function(){ $('#addtags').tagit('add', 'test value');

Solution 1:

Try using :

$("#myTags").tagit("createTag", "brand-new-tag");

Source : https://github.com/aehlke/tag-it/blob/master/README.markdown

Post a Comment for "Jquery Tagit - No Such Method 'add'"