Skip to content

Instantly share code, notes, and snippets.

@DevShahidul
Created October 1, 2018 22:11
Show Gist options
  • Select an option

  • Save DevShahidul/751da09547af8c19a79cb32534b0f7ab to your computer and use it in GitHub Desktop.

Select an option

Save DevShahidul/751da09547af8c19a79cb32534b0f7ab to your computer and use it in GitHub Desktop.
$(document).on('DOMMouseScroll mousewheel', function(e) {
var moved = e.originalEvent.wheelDelta || e.originalEvent.detail * -1 || 0;
if (moved > 0) {
// scrolled up
} else if (moved < 0) {
// scrolled down
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment