Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2019
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. // Run this and watch dates you wanna reach
  2. var scrollingInterval = setInterval(function () {
  3. document.querySelectorAll('.uiScrollableAreaWrap.scrollable')[2].scrollTop = 0;
  4. }, 500);
  5.  
  6. // hit this, once you reach
  7. clearInterval(scrollingInterval);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement