TRENDING NEWS

POPULAR NEWS

Infinite Scroll Stops

How can I stop an infinite scrolling website from automatically scrolling in Chrome?

Three options:Disconnect from wifi temporarily. Contact the site owner and ask them to disable it.Turn off Javascript in your browser settings.

Turn off infinite scroll?

Until yesterday, my inbox was showing 25 emails per page. Suddenly today it went to infinite scroll. I've gone to Mail Options and made sure it's still showing 25 per page. My other Yahoo email account is still working fine. Any ideas on how to fix this? Infinite Scrolling is one serious pain.

Is there a way to automatically load a page with infinite scroll until it gets to the bottom of the feed? Is there a software or a setting that helps to do this?

Dunno if there's anything that already exists, but it's pretty easy:var lastScrollHeight = 0;
function autoScroll() {
var sh = document.documentElement.scrollHeight;
if (sh != lastScrollHeight) {
lastScrollHeight = sh;
document.documentElement.scrollTop = sh;
}
}
window.setInterval(autoScroll, 100);
There are more efficient ways, but this sledgehammer will work fine. You can throw it into a Chrome Content Script or Firefox Greasemonkey Script. Or even just paste it into the developer console of any modern browser.

Infinite scroll on my tumblr dash isn't working?

Uhm so usually when I go on tumblr I cant scroll down my dash endlessly. But when I logged on today I could on go through a few pictures and posts before it stopped and I couldn't see anything else? It's really annoying. How can I make it back to the way it was before? Any help would be great, thank you :)

Tumblr Page Stops Scrolling! Help :(?

Just recently, I have discovered that my tumblr blog stops scrolling at around 15 posts. I have installed infinite scrolling months ago and it had been working nicely until now. My dashboard still says I have the same number of posts, so it's not because someone deleted all my posts. Someone also recommended that I delete my song player, but it still doesn't work!

Does anyone know what had happened? Is anyone having the same problem?

PS: Here is my blog: http://hurrayforslytherins.tumblr.com/
check it out and see if the scrolling does indeed stop.

TRENDING NEWS