Skip to content

scadorel/jquery-ui-sortable-animation

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

jQuery UI Sortable Animation

Just follow these simple steps to enable sort animation in your jQuery UI app:

  • Include jQuery and jQuery UI on your page.
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jqueryui/1.11.2/jquery-ui.js"></script>
  • Include jQuery UI Sortable Animation script after jQuery UI and before its first use.
<script src="jquery.ui.sortable-animation.js"></script>
  • Just use jQuery UI as usual or with special sortAnimate parameter
<script>
  $('#sortable').sortable({
    sortAnimateDuration: 150, // animation duration (default - 150ms)
    sortAnimate: true // default - false
  });
</script>

Releases

No releases published

Packages

No packages published