views:

476

answers:

3

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?

A: 

Any popular library (Prototype, jQuery) can help you do this. They assist in grabbing the data via AJAX as well as helping you automate the DOM interaction.

Diodeus
+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
Demo doesn't work.
Diodeus
"Works for me" -- Firefox 3.0.3.
Ryan Duffield
Make sure you click "View Results" to see the endless page functionality.
Ryan Duffield
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