Advertisement
Guest User

Untitled

a guest
Dec 3rd, 2016
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. var height = $(document).height()-$(window).height();
  2. var scrolldepth = 0;
  3. var toTop = 0;
  4. $(window).scroll(function(event) {
  5. toTop = $(window).scrollTop();
  6. scrolldepth = Math.round((toTop/height)*100);
  7. if(scrolldepth >= scrolldepth_value && opened==0) {
  8. // Do something
  9. }
  10. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement