victorpavlov
12/1/2015 - 11:26 AM

How can I determine the direction of a jQuery scroll event? http://stackoverflow.com/questions/4326845/how-can-i-determine-the-direction-of-

var lastScrollTop = 0;
$(window).scroll(function(event){
   var st = $(this).scrollTop();
   if (st > lastScrollTop){
       // downscroll code
   } else {
      // upscroll code
   }
   lastScrollTop = st;
});