Skip to content

Instantly share code, notes, and snippets.

@enlacee
Created November 14, 2013 22:50
Show Gist options
  • Save enlacee/7475731 to your computer and use it in GitHub Desktop.
Save enlacee/7475731 to your computer and use it in GitHub Desktop.
$('body').on('DOMMouseScroll mousewheel', function (e) {
if(e.originalEvent.detail > 0 || e.originalEvent.wheelDelta < 0) { //alternative options for wheelData: wheelDeltaX & wheelDeltaY
//scroll down
console.log('Down');
} else {
//scroll up
console.log('Up');
}
//prevent page fom scrolling
return false;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment