Skip to content

Instantly share code, notes, and snippets.

@neocoder
Created April 11, 2012 07:44
Show Gist options
  • Save neocoder/2357663 to your computer and use it in GitHub Desktop.
Save neocoder/2357663 to your computer and use it in GitHub Desktop.
Disable elastic page bounce in mobile webkit.
document.addEventListener( 'touchmove', function(e) {
e.preventDefault();
}, false );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment