Skip to content

Instantly share code, notes, and snippets.

@abteilung
Created May 20, 2013 19:12
Show Gist options
  • Select an option

  • Save abteilung/5614679 to your computer and use it in GitHub Desktop.

Select an option

Save abteilung/5614679 to your computer and use it in GitHub Desktop.
No Scrolling with MouseWheel. JavaScript
window.onmousewheel = document.onmousewheel = function(e) {
e = e || window.event;
if (e.preventDefault)
e.preventDefault();
e.returnValue = false;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment