Skip to content

Instantly share code, notes, and snippets.

@scodx
Created September 19, 2013 14:50
Show Gist options
  • Save scodx/6624645 to your computer and use it in GitHub Desktop.
Save scodx/6624645 to your computer and use it in GitHub Desktop.
detect horizontal scroll in js
var lastScrollLeft = 0;
$(window).scroll(function() {
var documentScrollLeft = $(document).scrollLeft();
if (lastScrollLeft != documentScrollLeft) {
console.log('scroll x');
lastScrollLeft = documentScrollLeft;
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment