Jquery JavaScript DHTML





  jQuery UI Sortable - Default functionality
  
  
  
  
  
  
  #sortable { list-style-type: none; margin: 0; padding: 0; width: 60%; }
  #sortable li { margin: 0 3px 3px 3px; padding: 0.4em; padding-left: 1.5em; font-size: 1.4em; height: 18px; }
  #sortable li span { position: absolute; margin-left: -1.3em; }
  
  
  $(function() {
    $("#sortable").sortable();
    $("#sortable").disableSelection();
  });
  




  Item 1
  Item 2
  Item 3
  Item 4
  Item 5
  Item 6
  Item 7




  Enable a group of DOM elements to be sortable. Click on and drag an
  element to a new spot within the list, and the other items will adjust to
  fit. By default, sortable items share draggable properties.