Skip to content

Instantly share code, notes, and snippets.

@chrisgfortes
Created October 15, 2015 17:54
Show Gist options
  • Save chrisgfortes/c50fc83126b0d6158eae to your computer and use it in GitHub Desktop.
Save chrisgfortes/c50fc83126b0d6158eae to your computer and use it in GitHub Desktop.
Bloqueando e desbloqueando o scroll jquery
// Bloqueia o scroll da tela
$('body').on("scroll mousewheel DOMMouseScroll", function(e) {
e.preventDefault();
e.stopPropagation();
});
// Desbloqueia o scroll da tela
$('body').on("scroll mousewheel DOMMouseScroll", function(e){
$(this).unbind("mousewheel");
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment