Skip to content

Instantly share code, notes, and snippets.

@avhm
Created March 17, 2011 14:49
Show Gist options
  • Save avhm/874447 to your computer and use it in GitHub Desktop.
Save avhm/874447 to your computer and use it in GitHub Desktop.
Override scroll action
var mouseWheelHandler = function(e){
// Prevent your scroll action here e.g:
$(window).stop(true)
}
/** for Mozilla. */
if (window.addEventListener) window.addEventListener('DOMMouseScroll', mouseWheelHandler, false);
/** IE/Opera. */
window.onmousewheel = document.onmousewheel = mouseWheelHandler;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment