Infinite Scroll is often considered a dark design pattern. It makes it easier for users to waste a lot of time idly skimming content without engaging with it while you can occasionally throw ads in to get some money.<p>Hackernews explicitly states they want users to engage meaningfully and critically with the content on the site, and also they don't serve up ads for revenue. Given that, infinite scroll seems likely to run contrary to all of their goals with the message board.
I say this as a front-end dev who has worked on, among other things, several SPAs<p>Downsides of infinite scroll:<p>- Requires JavaScript (adds complexity, especially when site doesn't already require dynamic rendering)<p>- Loose/unpredictable UX behavior can be discomforting (loads when you don't want it to load, doesn't load when you want it to, scroll bar suddenly changes size, etc)<p>- Reloading the page/clicking the back button loses your position<p>- Monotonically-growing DOM slows things down eventually, unless you start de-rendering previous "pages", which adds even more complexity and unpredictability (Ctrl+F doesn't behave as expected, for example)<p>I think it can make sense for some things, but not for a simple and stable website like HN. Even for something like Twitter I wish they hadn't added it.
I hate infinite scroll. How do you track where you were with infinite scroll? On mobile when rss is smaller infinite websites tend to reset when the web browser clises down, and I have to re scroll half an hour to get to where I were.<p>I had so much bad experience with infinite scroll that I want to curse that whoever invented inf scroll is a P, M and I.
I hate when websites do that, especially since it is often when I'm trying to get to the footer for a link. Or when a story becomes another as you finish reading, changing the address at the same time. Awful.
Others provide good reasons why it's not in place. But if you want it anyways, here's a snippet you can put in your browser JS console:<p><pre><code> (new IntersectionObserver(v => { if (v[0].isIntersecting) {document.querySelector(".morelink").click()}}, {rootMargin: "0px", threshold: 1})).observe(document.querySelector(".morelink"))
</code></pre>
You'd have to rerun the snippet for each page load, so not quite effortless. Throw it into a browser extension content script and you'll get it truly infinite.
I read once on the psychological effects of infinite scroll and that it made users somewhat anxious. I can not remember the source however.<p>This resonates with me. I don't like when I can not "feel the size" of a page. This might be ridiculous but I find it helps to materialize web pages when they do have a bottom.
The iOS app actually does have infinite scroll, but I'm very glad the in-browser GUI does not. Very little about the Internet is more annoying than having your scrollbar position suddenly pulled out from under you and what had been a smooth scroll hijacks where you are on the page and throws you thousands of words lower. To me, this makes Google News and Facebook effectively unusable in a browser (which is maybe the point given how much harder it is to block ads in their native apps).
I dislike Infinite Scroll especially on Web <i>Pages</i>. HN as a webpage is about as simple as it gets.<p>For things like Apps, such as Twitter. I am fine. The difference can be reduced to experience. App tends to be so much better with loading / pre-loading all the information. I have never seen any infinite scrolling that works well inside web browser. Even the best of them seems to be janky.<p>I also want to mention Twitter is more like continuous scroll. Since there is a definite bottom of your main feeds.
Not having infinite scroll is <i>great</i> when you're on an older device. The user is in much more control of how much resources the website uses up without it.
To quote dang (the moderator) "for performance reasons".<p><a href="https://news.ycombinator.com/item?id=26069395" rel="nofollow">https://news.ycombinator.com/item?id=26069395</a><p>He tends to post the comment like that on all of the most popular posts<p>Apparently they're working on adding infinite scroll back but she also mentioned in thesw threads
There's no technical requirement that justifies infinite scroll.<p>HN is purposely bare bones - it does what it's intended to and nothing else.
I can't say this is why HN isn't doing this but Infinite Scroll is generally not 'Accessibility' friendly [1].<p>1. <a href="https://www.digitala11y.com/infinite-scroll-accessibility-is-it-any-good/" rel="nofollow">https://www.digitala11y.com/infinite-scroll-accessibility-is...</a>
I don't want infinite scroll on anything, my internet is rarely as fast as I want it to be and anytime I'm on a website that has it and I go beyond about the 300th thing mark it crawls, if I ever hit the 1000th thing mark it breaks. No thank you, never implement it on anything.
On a technical perspective, it's also quite a bit of work. I've spent at least two weeks on it to sort out the kinks, which is a lot of time for a feature that few people appreciate. It's suitable for apps like TikTok, not so much for something like HN.
One reason HN shouldn't use infinite scroll that I'm surprised no one has mentioned yet - this site doesn't have a high enough rate of new content for it to be worthwhile.
One of my favorite message boards has pagination and you have to click in to messages to see them and then press the back button on your browser: <a href="https://virginia.sportswar.com/message_board/general/" rel="nofollow">https://virginia.sportswar.com/message_board/general/</a>. Old, but has stood the test of time.