Skip to content

Instantly share code, notes, and snippets.

@AlexandroPerez
Created June 24, 2016 10:00
Show Gist options
  • Save AlexandroPerez/b503506e63bd0496120f0a5a5ef9fed8 to your computer and use it in GitHub Desktop.
Save AlexandroPerez/b503506e63bd0496120f0a5a5ef9fed8 to your computer and use it in GitHub Desktop.
// Event listener for scrolling up or down
// source: http://jsfiddle.net/jquerybyexample/ScQQr/
var iScrollPos = 0;
$(window).scroll(function () {
var iCurScrollPos = $(this).scrollTop();
if (iCurScrollPos > iScrollPos) {
console.log('down');
} else {
console.log('up');
}
iScrollPos = iCurScrollPos;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment