Skip to content

Instantly share code, notes, and snippets.

@eklimcz-zz
Created July 25, 2011 16:31
Show Gist options
  • Save eklimcz-zz/1104517 to your computer and use it in GitHub Desktop.
Save eklimcz-zz/1104517 to your computer and use it in GitHub Desktop.
js prevent scale scroll
<!-- Prevent Scale -->
<meta name="viewport" content="user-scalable=no, width=device-width" />
<!-- Prevent Default Scroll-->
<script>
function BlockMove(event) {
event.preventDefault() ;
}
</script>
<body ontouchmove="BlockMove(event);" >
...
</body>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment