Skip to content

Instantly share code, notes, and snippets.

@timothydang
Created October 23, 2011 23:31
Show Gist options
  • Save timothydang/1308071 to your computer and use it in GitHub Desktop.
Save timothydang/1308071 to your computer and use it in GitHub Desktop.
disable touch event
var eventHandler = function(e) {
e.preventDefault();
}
document.addEventListener('touchmove', eventHandler, false);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment