user954740
user954740

Reputation: 219

jquery ui draggable connectToSortable how to stop fade Animation on drop

Does anybody know how I can delete the fading effect after dropping or sorting an element at the following example?

Jquery sortable

Thank you very much.

Upvotes: 1

Views: 1335

Answers (1)

Erik Dekker
Erik Dekker

Reputation: 2433

Remove the revert tags: http://jsfiddle.net/UnHPn/`

For completeness:

revert

Boolean, String Default:false

If set to true, the element will return to its start position when dragging stops. Possible string values: 'valid', 'invalid'. If set to invalid, revert will only occur if the draggable has not been dropped on a droppable. For valid, it's the other way around.

http://jqueryui.com/demos/draggable/#option-revert

Upvotes: 2

Related Questions