Skip to content

Instantly share code, notes, and snippets.

@Arfey
Created April 30, 2016 10:50
Show Gist options
  • Save Arfey/ff3c200c5f49aa134a35964aebbbb47c to your computer and use it in GitHub Desktop.
Save Arfey/ff3c200c5f49aa134a35964aebbbb47c to your computer and use it in GitHub Desktop.
$elem.on('mousewheel', function (e, delta) {
// Restricts mouse scrolling to the scrolling range of this element.
if (
this.scrollTop < 1 && delta > 0 ||
(this.clientHeight + this.scrollTop) === this.scrollHeight && delta < 0
) {
e.preventDefault();
}
});
<script src="https://rawgit.com/jquery/jquery-mousewheel/master/jquery.mousewheel.js"></script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment