when applying animation to an element - eg. div.animate() - how can i unbind that animation from single elements?
i've tried div.unbind() and div.unbind("animate") but didnt work..
thanks
when applying animation to an element - eg. div.animate() - how can i unbind that animation from single elements?
i've tried div.unbind() and div.unbind("animate") but didnt work..
thanks
If you just want to stop the animation on the selected element instead of completely switching animations for all elements, simply use div.stop() or div.clearQueue()
http://api.jquery.com/clearQueue/
if you actually use div.stop(true), it will actually call clearQueue as well.
I think you need this:
The animation is not bind to an element, it is just an effect => you can't unbind