Skip to content

Instantly share code, notes, and snippets.

@sandeshdamkondwar
Last active December 17, 2015 03:58
Show Gist options
  • Save sandeshdamkondwar/5546651 to your computer and use it in GitHub Desktop.
Save sandeshdamkondwar/5546651 to your computer and use it in GitHub Desktop.
Mouse wheel event scroll
function wheel(event){
var delta = 0;
event.preventDefault();
if(window.event.wheelDelta > 0){
$('.right_arrow').trigger('click');
}
else{
$('.left_arrow').trigger('click');
}
}
$('.PartyPlannerSlide').on('mousewheel', wheel);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment