Skip to content

Instantly share code, notes, and snippets.

@adikahorvath
Last active August 29, 2015 14:18
Show Gist options
  • Save adikahorvath/0c632a00c8ed03b48701 to your computer and use it in GitHub Desktop.
Save adikahorvath/0c632a00c8ed03b48701 to your computer and use it in GitHub Desktop.
disable/enable scrolling on mobile devices
// disable
document.ontouchmove = function(e){ e.preventDefault(); }
$('body').bind('touchmove scroll mousewheel', function(e){
e.preventDefault();
});
// enable
document.ontouchmove = function(e){ return true; }
$('body').unbind('touchmove scroll mousewheel');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment