プラグインが適用された後にいくつかのアクションを実行する方法はありますか?たとえば、
$("#mytags").tagit({
tagSource: function (request, response) {
}
});
そして私はこのようなsmthが欲しい:
$("#mytags").tagit({
tagSource: function (request, response) {
}
}, function(){
$(#test).remove();
});