Jquery JavaScript DHTML


  
  
  
      
    
$(document).ready(
  function() {
    $('ul').sortable({
      placeholder: 'tmpPlaceholder',
      helper: function(e, element) {
      return $(element).clone().addClass('tmpHelper');
      }
    });
  }
);
    
    
ul {
    list-style: none;
}
li {
    background: rgb(218, 191, 162);
    padding: 3px;
    width: 244px;
}
li.tmpPlaceholder {
    background: rgb(110, 159, 128);
    height: 22px;
}
    
  
  
    

          
  • A

  •       
  • B

  •       
  • C

  •       
  • D

  •