Skip to content

Instantly share code, notes, and snippets.

@zazanik
Created October 23, 2017 14:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zazanik/8befd206fda5a049276d9c306e75247c to your computer and use it in GitHub Desktop.
Save zazanik/8befd206fda5a049276d9c306e75247c to your computer and use it in GitHub Desktop.
Remove scroll from iphone
$('body').on('touchmove', function(e){
if($('.scroll-disable').has($(e.target)).length) e.preventDefault();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment