vote up 1 vote down star
1

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?

flag

43% accept rate

2 Answers

vote up 2 vote down

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.

link|flag
Demo doesn't work. – Diodeus Oct 8 '08 at 18:03
"Works for me" -- Firefox 3.0.3. – Ryan Duffield Oct 8 '08 at 18:58
Make sure you click "View Results" to see the endless page functionality. – Ryan Duffield Oct 8 '08 at 18:59
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 Oct 8 '08 at 20:36
vote up 0 vote down

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.

link|flag

Your Answer

Get an OpenID
or

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