Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've implemented an infinite scrolling on a page, it works good, when the page is scrolled to bottom, the data is loaded, but I want to do some kind of preloading of data to prevent user to wait each time he reaches the bottom of the page. I really need an advice for this, cause I don't really know ho to do it (A good example that I saw, is on Pinterest, they preload data before scroll reaches the bottom of the page). Thanks guys

A snippet from my code

$(window).scroll(function(){

    var $scrlTop = $(window).scrollTop();
    var $docHght = $(document).height();
    var $wndwHght = $(window).height();

    if  ($scrlTop == $docHght - $wndwHght){                    

        loadMore();
    }
});
share|improve this question

1 Answer

Instead of calling loadMore() when the scroll gets to the very bottom, how about some time before that?

if ($scrlTop >= $docHght - $wndwHght * 2) {
   loadMore();
}
share|improve this answer
It's not working right, cause on first scroll to bottom all the data from database is shown. – Denis Hoss Dec 6 '12 at 14:10
@DenisHoss are you saying that loadMore loads all of the data rather than just "more?" – Explosion Pills Dec 6 '12 at 14:12
right, cause after first load the $scrlTop will be always bigger than $docHght - $wndwHght * 2 – Denis Hoss Dec 6 '12 at 14:17

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.