Jquery JavaScript DHTML





  jQuery UI Draggable - Auto-scroll
  
  
  
  
  
  
  #draggable, #draggable2, #draggable3 { width: 100px; height: 100px; padding: 0.5em; float: left; margin: 0 10px 10px 0; }
  
  
  $(function() {
    $("#draggable").draggable({ scroll: true });
    $("#draggable2").draggable({ scroll: true, scrollSensitivity: 100 });
    $("#draggable3").draggable({ scroll: true, scrollSpeed: 100 });
  });
  



  

  

Scroll set to true, default settings




  

scrollSensitivity set to 100




  

scrollSpeed set to 100







Automatically scroll the document when the draggable is moved beyond the viewport. Set the scroll option to true to enable auto-scrolling, and fine-tune when scrolling is triggered and its speed with the scrollSensitivity and scrollSpeed options.