Skip to content

Instantly share code, notes, and snippets.

@markreale
Created May 28, 2012 15:56
Show Gist options
  • Save markreale/2819831 to your computer and use it in GitHub Desktop.
Save markreale/2819831 to your computer and use it in GitHub Desktop.
Prevent Default Bounce in iOS web projects
/***********************************************
* *
* Function that will prevent default bounce *
* behaviour in iOS applications. *
* (Also prevents any touch-scrolling) *
* - requires jQuery *
* *
***********************************************/
function preventBounce(){
$(document).bind('touchmove',function(e) {
e.preventDefault();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment