vote up 1 vote down star

JQuery's sortable has an option to revert the item that the user drags back in line with the rest, but the animation is a little slow.

Is there a simple way to specify 'fast' like some of the other methods?

flag

77% accept rate

1 Answer

vote up 3 vote down check

It appears to be undocumented, but setting the revert property to a number will treat that as the speed (or more specifically the duration in ms). So something like this gives a pretty quick revert animation:

$("#sortable").sortable({revert: 100});

(Aside: It's a pity they haven't kept it consistent with draggables, which use revertDuration to specify the speed of the revert.)

link|flag

Your Answer

Get an OpenID
or

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