Google Reader as Lazy-loading HTML content

On the news page that I created, I have a list of snippets with information, links to thumbnails, etc. I would like to get additional elements and add them to the list as soon as the user scrolls the list to the end of the list so that a person can do this to the end. (or the end of 20,000 of some entries;)

I checked http://www.appelsiini.net/projects/lazyload , however this seems to focus on images and is also incompatible these days.

I would have thought it was done before, but it’s hard for me to find a solution. Maybe I'm not sure what conditions I should look for.

What resources can I use to achieve this? I got an html response (returning 10 <li>elements with content), all I need is JS

thank

+3
source share
1 answer

What you want to do is probably easily accomplished with the Infinite Scroll jQuery Plugin

Source available on github

+5
source

All Articles