You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Try using clear plugin..
Or add below code for some event
someevent: {
var self = jQuery(this);
// check if the tags plugin is present
if(typeof self.core()._plugins.tags != 'undefined')
{
// it is! remove all tags
var elems = self.core()._plugins.tags.tagElements();
for(var i =0; i < elems.length;i++)
{
self.core()._plugins.tags.removeTag($(elems[i]));
}
}
// clear the text from the search area
self.val('');
self.core().getFormData();
Hello everyone,
today i will loop current tags to remove them
It would be nice to have a method "removeAllTags()"
King regards
The text was updated successfully, but these errors were encountered: