Skip to content

Instantly share code, notes, and snippets.

@otarza
Created June 5, 2015 12:50
Show Gist options
  • Save otarza/f7a40e3c8bd641697929 to your computer and use it in GitHub Desktop.
Save otarza/f7a40e3c8bd641697929 to your computer and use it in GitHub Desktop.
prevent scrolling on iPhone
document.ontouchstart = function(e){
if() {
e.preventDefault();
} else {
return true;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment