What are the recommendations for infinite scroll?
Don't use it. It's an antipattern and an awful meme.
Pagination with rel=“next” and rel=“prev” (2011)
11–20 of 96 posts
Re: Pagination with rel=“next” and rel=“prev” (2011)
#12Re: Pagination with rel=“next” and rel=“prev” (2011)
#13Earlier quoted context omitted.
Don't use it. It's an antipattern and an awful meme.
Why's that?
Re: Pagination with rel=“next” and rel=“prev” (2011)
#14Earlier quoted context omitted.
Don't use it. It's an antipattern and an awful meme.
Why's that?
You will also end up losing your reading position after a browser restart or on iOS where Mobile Safari reloads a page to save memory.
It's a dumb, pointless feature that at the very least shouldn't be the default option. I'm sure there are hypothetical scenarios that may or may not warrant it, but it is a pain and a half for the user. Tumblr blogs have it in spades, and it's a miserable experience to browse.
Re: Pagination with rel=“next” and rel=“prev” (2011)
#15Re: Pagination with rel=“next” and rel=“prev” (2011)
#16Earlier quoted context omitted.
Don't use it. It's an antipattern and an awful meme.
Why's that?
- usually breaks the back button (e.g. scroll to the 20th page, click something, go back. welcome to page 1!)
- usually breaks links (how do you show someone things-on-page-10?) (fixable by tweaking the URL as you go, but nothing is really consistent + predictable by non-technical users)
- usually performs hideously on low-power machines (e.g. mobile) due to memory growth (there are techniques, but few use them). can even tank powerful machines in time.
- footers. headers. etc.
Re: Pagination with rel=“next” and rel=“prev” (2011)
#17What are the recommendations for infinite scroll?
Re: Pagination with rel=“next” and rel=“prev” (2011)
#18Re: Pagination with rel=“next” and rel=“prev” (2011)
#19I know there are a bunch of gotcha's to look out for
Re: Pagination with rel=“next” and rel=“prev” (2011)
#20Literally one of the greatest things about the Opera browser was that you could browse an entire forum or whatever (longform article etc) with the Space key, because the browser would automatically go to the `next` page on hitting the bottom of the page. They also did some cool stuff with swiping to the next page on mobile. Opera seemed like the only browser vendor that truly championed next/prev. I only do it now as…