Skip to content

Instantly share code, notes, and snippets.

@castus
Created April 14, 2013 10:28
Show Gist options
  • Save castus/5382236 to your computer and use it in GitHub Desktop.
Save castus/5382236 to your computer and use it in GitHub Desktop.
[JS] Prevent window's and body scroll without overfow:hidden
$(window).scroll(function(event) {
if (cSubpage) {
event.preventDefault();
$('body,html').scrollTop(cScrolltop);
return;
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment