I have a bounce effect in my jquery ui. During the bounce there is a color change, is there any way I can set the color back to normal right after the bounce finish?
$(div).effect("bounce", { times:2 }, 200);
Is there any event handler in jQuery related to animate or effect?
The documentation on effect shows that it is called as follows:
So, you can simply pass a function to the
callbackparameter and that will run once the effect completes.