Skip to content

Instantly share code, notes, and snippets.

@joelremix
Created June 15, 2013 17:52
Show Gist options
  • Save joelremix/5788938 to your computer and use it in GitHub Desktop.
Save joelremix/5788938 to your computer and use it in GitHub Desktop.
JS: prevent scrolling
document.body.addEventListener('touchmove', function(event) {
event.preventDefault();
}, false);
// http://www.html5rocks.com/en/mobile/touch/
document.body.addEventListener('touchmove', function(event) {
event.preventDefault();
}, false);
// http://www.html5rocks.com/en/mobile/touch/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment