W
W
winstan2016-05-22 22:09:45
JavaScript
winstan, 2016-05-22 22:09:45

Loading the continuation of the page, how to find out how much is left to "scroll" to the end of the page?

advise how to find out how much is left to "scroll" to the end of the page, so that you can load more news? like a feed in VK?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
Y
Yuri Kucherenko, 2016-05-23
@winstan

$(window).scroll(function(){
  if($(window).scrollTop() + $(window).height() > $(document).height() - 100) {
    // Делаем что нам нужно когда доскролили вниз
   $('.hidden-block').addClass('show-hidden_block');
  }
});

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question