Disable Scrolling


/ Published in: jQuery
Save to your folder(s)

Prevent scrolling


Copy this code and paste it in your HTML
  1. // Prevent Scrolling
  2. $(document).bind("touchmove",function(event){
  3. event.preventDefault();
  4. });

URL: http://hannahtackett.com

Report this snippet


Comments


You need to login to view comments.