Skip to content

Instantly share code, notes, and snippets.

@carlossalas
Last active October 15, 2020 22:16
Show Gist options
  • Save carlossalas/75347e021cf1a7f524ca6ac95e2885b9 to your computer and use it in GitHub Desktop.
Save carlossalas/75347e021cf1a7f524ca6ac95e2885b9 to your computer and use it in GitHub Desktop.
Prevent parent scroll when in child div
$('.wrap').on('mousewheel', function(e){
var event = e.originalEvent,
d = event.wheelDelta || -event.detail;
this.scrollTop += ( d < 0 ? 1 : -1 ) * 50;
e.preventDefault();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment