Guest User

Untitled

a guest
Oct 23rd, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. var count = 0;
  2. var max = 10;
  3.  
  4. var scrollToBottom = function() {
  5. window.scrollTo(0,document.querySelector(".ytd-page-manager").scrollHeight);
  6. }
  7.  
  8. var scrollToTop = function() {
  9. window.scrollTo(0,document.querySelector(".ytd-page-manager"));
  10. }
  11.  
  12. var scroll = function() {
  13. scrollToBottom();
  14.  
  15. if ( ++count < max)
  16. setTimeout( function() {scroll()}, 500);
  17. else
  18. scrollToTop();
  19. }
  20.  
  21. scroll();
Add Comment
Please, Sign In to add comment