Im wondering is there any way to make some actions after the plugin is applied For example,
$("#mytags").tagit({
tagSource: function (request, response) {
}
});
and I want smth like this:
$("#mytags").tagit({
tagSource: function (request, response) {
}
}, function(){
$(#test).remove();
});
tagSourcefunction? – Ian Dec 5 '12 at 14:46$("#test").remove();on the next line? – Ian Dec 6 '12 at 14:05$("#mytags").tagit({}).each(function () { // Refer to 'this' for each element });– Ian Dec 6 '12 at 14:11