Easy way
to add sorting animation on your site with jQuery UI by adding 1 line of code.
You have a site with jQuery UI user interface library, but it currently does not support animation for .sortable() plugin. This small plugin adds sorting animation if you pass two additional parameters to sortable .sortable() options
.
Available options:
animation
- animation duration in ms, 0 no animation$('#sortable').sortable({ axis: 'y', containment: 'parent', animation: 200, });