Unobtrusive AJAX Pagination With Rails
I’ve searched around for unobtrusive AJAX pagination with Ruby on Rails tutorials but the best I’ve found are the ones by Ryan Bates at Railscasts. Pagination with AJAX , followed directly by AJAX History and Bookmarks teaches you how to create unobtrusive AJAX pagination.
Also I was at http://wiki.github.com/mislav/will_paginate/ajax-pagination. I didn’t follow those instructions but took note of the advice NOT to use link_to_remote to try and create unobtrusive pagination because they are actually obtrusive and make life difficult for search engines.
Test your AJAX pagination with the Javascript turned off and it should still work fine. Remember that search engines don’t read Javascript so they just ignore it, so if your AJAX app works with JS turned off then chances are that search engines will do alright on your site.
[...] the original here: Unobtrusive AJAX Pagination Share and [...]