I am building a blog type page, and I want to load items into the page as the user scrolls down, much like Google Reader, or Soup.io. How would you go about achieving this effect? I've seen some examples which read the height of the page, and have an onScroll even attached to the window so that as the user scrolls down we can test to see if they've scrolled down far enough to warrant loading more items. Soup.io's implementation seems to remove the old items as you scroll down so that the browser isn't dealing with an ever-increasingly large DOM tree. Which javascript libraries would be best suited to this task?
+2
A:
Unspace had an article demonstrating this functionality: Endless Pageless: No More Next Page. Their demonstration page is here.
This particular example uses RoR and Prototype.
Ryan Duffield
2008-10-08 17:10:15
Demo doesn't work.
Diodeus
2008-10-08 18:03:37
"Works for me" -- Firefox 3.0.3.
Ryan Duffield
2008-10-08 18:58:39
Make sure you click "View Results" to see the endless page functionality.
Ryan Duffield
2008-10-08 18:59:39
I get: Application error (Apache)Change this error message for exceptions thrown outside of an action (like in Dispatcher setups or broken Ruby code) in public/500.html
Diodeus
2008-10-08 20:36:26
A:
Thy this jquery example http://webdeveloperplus.com/jquery/create-a-dynamic-scrolling-content-box-using-ajax/
Binyamin
2010-10-12 10:03:54