Skip to content

Instantly share code, notes, and snippets.

@clm-a
Created August 16, 2011 16:08
Show Gist options
  • Save clm-a/1149439 to your computer and use it in GitHub Desktop.
Save clm-a/1149439 to your computer and use it in GitHub Desktop.
Touch gestures
element.addEventListener('touchstart', function(e) {
e.preventDefault();
}, false);
element.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