Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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();
});
share|improve this question
Can you provide more of your tagSource function? – Ian Dec 5 '12 at 14:46
tagSource function doesnt matter at all It can be any function, I dont need a callback from tagSource func, I need callback for the successfully applied plugin – Leg0 Dec 6 '12 at 9:26
Why do you need a callback? Why can't you just call $("#test").remove(); on the next line? – Ian Dec 6 '12 at 14:05
If you really need it in a chained manner (even though in your example it's only selecting one element), you could use $("#mytags").tagit({}).each(function () { // Refer to 'this' for each element }); – Ian Dec 6 '12 at 14:11
I need a callback because: tagIt transforms my div into tagIt block with input, I need to put a placeholder value on input, but I can do it only after successful plugin init – Leg0 Dec 6 '12 at 18:58
show 4 more comments

1 Answer

You need to discover plugin API for appropriate event. If you use this one, it has such event: afterTagAdded (function, Callback).

Read documentation for how to use.

share|improve this answer
Thanks, but thats not what I need. Exactly what I need is: 1. Plugin applies to the div, sends whatever etc 2. After its done I need to hide/remove/do anythings else. Is that possible? – Leg0 Dec 5 '12 at 18:15

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.