Reputation: 219
Does anybody know how I can delete the fading effect after dropping or sorting an element at the following example?
Thank you very much.
Upvotes: 1
Views: 1335
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