Skip to content

Instantly share code, notes, and snippets.

@hqman
Created November 18, 2012 02:51
Show Gist options
  • Save hqman/4103139 to your computer and use it in GitHub Desktop.
Save hqman/4103139 to your computer and use it in GitHub Desktop.
ipad prevent touchmove
document.ontouchmove = function(event){
event.preventDefault();
}
#http://stackoverflow.com/questions/7768269/ipad-safari-disable-scrolling-and-bounce-effect
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment