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.

I tried Googling and couldn't find this, but I imagine it is a fairly simple task. I am trying to get rid of the revert animation (N.B. I want to keep the revert action, just want to remove the animation of it reverting) when you drop from the left side to the right side in this example : http://jsfiddle.net/2fsVZ/

Here is the long and short of what I am looking for:

Below is the JavaScript I am working with - how do I tell it to not animate the revert?

  $( ".before .left-side>div" ).draggable({ revert: true});
share|improve this question
Please post a portion of your code here in addition to the jsfiddle link. This way if the jsfiddle link is lost the question is still helpful to others. – jholloman Oct 17 '12 at 20:37
Good point. Done. – user801745 Oct 17 '12 at 21:14

1 Answer

up vote 3 down vote accepted

You just need to set the revertDuration to 0.

$( ".before .left-side>div" ).draggable({
    revert: true,
    revertDuration: 0
});

http://jsfiddle.net/2fsVZ/2/

http://docs.jquery.com/UI/Draggable#option-revertDuration

share|improve this answer
I knew it was something simple!! Thanks!! – user801745 Oct 17 '12 at 21:11

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.