Jquery JavaScript DHTML





  jQuery UI Draggable - Revert position
  
  
  
  
  
  
  #draggable, #draggable2 { width: 100px; height: 100px; padding: 0.5em; float: left; margin: 0 10px 10px 0; }
  
  
  $(function() {
    $("#draggable").draggable({ revert: true });
    $("#draggable2").draggable({ revert: true, helper: 'clone' });
  });
  



  

  

Revert the original




  

Revert the helper






Return the draggable (or it's helper) to its original location when dragging stops with the boolean revert option.