Advertisement
Guest User

Untitled

a guest
Jun 28th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. /**
  2. * jQuery check scroll top
  3. */
  4. $(window).scroll(function() {
  5. if ( $(this).scrollTop() === 0 ) { /* window scroll to top */
  6. /* Do something */
  7. } else {
  8. /* Do something */
  9. }
  10. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement