Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How to destroy created animation on same element?

For example: I have animation

$('#sortable').animate({
    paddingTop: 85
}, 100);

And on same action I want to destroy it, because I done need it anymore. Something like:

$('#sortable').animate('destroy');

But it doesn't work.

share|improve this question
3  
what do you mean by destroy ? stop ? – ManseUK May 31 '12 at 7:38
try this? jQuery.fx.off = true; – Jim May 31 '12 at 7:41
I think the answer is already on StackOverflow See stackoverflow.com/questions/5077933/… and stackoverflow.com/questions/7378405/… – UmairP May 31 '12 at 7:44

1 Answer

up vote 1 down vote accepted

just use stop()

$('#sortable').stop(true);// first argument removes all animations in the queue
share|improve this answer

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.