Infinitely scroll to the bottom of the page

Ken

I've been working on a script that scrolls to the dead end of my twitter follower [twitter.com/following] list automatically. So far, I've achieved this with my newbie knowledge:

var delay=2000       
setTimeout(function(){
    for(var i = 0; i<10; i++){   
    window.scrollTo(0,document.body.scrollHeight);
    }
},delay)

The problem the scroller stops after one scroll to the bottom and it doesn't scroll further when the page height changes. Is there a way to loop it with a delay so that scroll gets executed repeatedly until it reaches the last follower.

Alternatively, is there a way to do the same by constantly tracking and dynamically updating the height of the page.

Drew Noakes

I think you want to use setInterval instead of setTimeout.

setInterval will fire repeatedly instead of just the one time.

This works for me:

setInterval(function() { window.scrollTo(0, document.body.scrollHeight); },
            2000);

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Java

Scroll Automatically to the Bottom of the Page

From Dev

Scroll to near the bottom of page

From Dev

scroll the a growing page to the bottom

From Dev

Scroll bar in page bottom

From Dev

Scroll to near the bottom of page

From Dev

JS for smooth scroll to the bottom of the page

From Dev

Automatically scroll to bottom as the page loads

From Dev

$mdtoast position bottom of page on scroll

From Dev

JS for smooth scroll to the bottom of the page

From Dev

$mdtoast position bottom of page on scroll

From Dev

Scroll to the Bottom of the Page after postBack

From Dev

scroll to bottom on page load but will allow to scroll on top

From Dev

scroll to bottom on page load but will allow to scroll on top

From Dev

Web Page Scroll To Right Side, Width Extending Infinitely

From Dev

Laravel - redirect to page and scroll to the bottom of the page

From Dev

Laravel - redirect to page and scroll to the bottom of the page

From Dev

how to scroll the page to bottom whenever the page load?

From Dev

jquery one page scroll start at the bottom

From Dev

Detect if scroll has touched bottom of page

From Dev

Scroll to bottom of page after get request AngularJs

From Dev

How to add some more scroll at the bottom of the page

From Dev

Scroll HTML page before it 'reaches' the bottom

From Dev

How to add some more scroll at the bottom of the page

From Dev

Scroll automatically to the bottom page - speed control

From Dev

Javascript - scroll bottom within another browser/page

From Dev

JQuery UI sortable scroll to bottom of the page

From Dev

Cannot scroll to absolute bottom of the page in mobile

From Dev

Elements position changing as you scroll to bottom of page

From Dev

jQuery scroll only detecting scroll at very top of the page and bottom?

Related Related

  1. 1

    Scroll Automatically to the Bottom of the Page

  2. 2

    Scroll to near the bottom of page

  3. 3

    scroll the a growing page to the bottom

  4. 4

    Scroll bar in page bottom

  5. 5

    Scroll to near the bottom of page

  6. 6

    JS for smooth scroll to the bottom of the page

  7. 7

    Automatically scroll to bottom as the page loads

  8. 8

    $mdtoast position bottom of page on scroll

  9. 9

    JS for smooth scroll to the bottom of the page

  10. 10

    $mdtoast position bottom of page on scroll

  11. 11

    Scroll to the Bottom of the Page after postBack

  12. 12

    scroll to bottom on page load but will allow to scroll on top

  13. 13

    scroll to bottom on page load but will allow to scroll on top

  14. 14

    Web Page Scroll To Right Side, Width Extending Infinitely

  15. 15

    Laravel - redirect to page and scroll to the bottom of the page

  16. 16

    Laravel - redirect to page and scroll to the bottom of the page

  17. 17

    how to scroll the page to bottom whenever the page load?

  18. 18

    jquery one page scroll start at the bottom

  19. 19

    Detect if scroll has touched bottom of page

  20. 20

    Scroll to bottom of page after get request AngularJs

  21. 21

    How to add some more scroll at the bottom of the page

  22. 22

    Scroll HTML page before it 'reaches' the bottom

  23. 23

    How to add some more scroll at the bottom of the page

  24. 24

    Scroll automatically to the bottom page - speed control

  25. 25

    Javascript - scroll bottom within another browser/page

  26. 26

    JQuery UI sortable scroll to bottom of the page

  27. 27

    Cannot scroll to absolute bottom of the page in mobile

  28. 28

    Elements position changing as you scroll to bottom of page

  29. 29

    jQuery scroll only detecting scroll at very top of the page and bottom?

HotTag

Archive