Advertisement
Guest User

Untitled

a guest
May 6th, 2015
236
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. // Works
  2.  
  3. $('body').on('mousewheel', function(event) {
  4. var scrollTop = $(document).scrollTop(); //shows a number properly when im scrolling
  5. });
  6.  
  7. // Doesnt work
  8.  
  9. var scrollTop = $(document).scrollTop(); // just shows a number 155 and thats it. Event if i scroll down and refresh the page
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement