Answer the question
In order to leave comments, you need to log in
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
$(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 questionAsk a Question
731 491 924 answers to any question