Skip to content

Instantly share code, notes, and snippets.

@le0pard
Created April 26, 2012 15:45
Show Gist options
  • Select an option

  • Save le0pard/2500488 to your computer and use it in GitHub Desktop.

Select an option

Save le0pard/2500488 to your computer and use it in GitHub Desktop.
If you want to prevent dragging on iphone
function preventBehavior(e) {
e.preventDefault();
};
document.addEventListener("touchmove", preventBehavior, false);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment