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();
}
});