Skip to content

Instantly share code, notes, and snippets.

@likerRr
Created May 8, 2015 07:56
Show Gist options
  • Save likerRr/f2886e226db595912ebb to your computer and use it in GitHub Desktop.
Save likerRr/f2886e226db595912ebb to your computer and use it in GitHub Desktop.
jQuery horizontal scroll
$('#el').bind('DOMMouseScroll mousewheel', function(e) {
var step = 30;
e.preventDefault();
step *= (e.originalEvent.wheelDelta > 0) ? -1 : 1;
$(this).scrollLeft($(this).scrollLeft() + step);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment