Skip to content

Instantly share code, notes, and snippets.

@alpenzoo
Last active April 23, 2018 13:27
Show Gist options
  • Select an option

  • Save alpenzoo/31f4c4aade689fcd5fd6813e778f3b67 to your computer and use it in GitHub Desktop.

Select an option

Save alpenzoo/31f4c4aade689fcd5fd6813e778f3b67 to your computer and use it in GitHub Desktop.
stop mouse scroll on element
$('div').on( 'mousewheel DOMMouseScroll', function (e) {
var e0 = e.originalEvent;
var delta = e0.wheelDelta || -e0.detail;
this.scrollTop += ( delta < 0 ? 1 : -1 ) * 30;
e.preventDefault();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment