views:

566

answers:

3

Pagination sucks! The user should be able to scroll down forever, automatically pulling in new content when appropriate.

There's a decent rails cast about this, but Ryan admits that his solution won't work in IE.

What's the best way to accomplish this in Rails (preferably in a jQuery-friendly fashion)?

+2  A: 

Like this? http://blog.artvaygraphics.com/?p=151

Ben Alpert
+1  A: 

Just tried jQuery.pageless and it's working pretty well.

Horace Loeb
A: 

This is the Rails plugin that works in the IE, Opera and FF: http://bewhite.blogspot.com/2008/05/rails-endless-page-plugin.html

... and git repository: git://github.com/shine/endless_page

IDBD