Skip to content

Instantly share code, notes, and snippets.

@ajitStephen
Last active February 13, 2024 10:27
Show Gist options
  • Save ajitStephen/b1f1d0bb5741705c1c1856da5ce9c491 to your computer and use it in GitHub Desktop.
Save ajitStephen/b1f1d0bb5741705c1c1856da5ce9c491 to your computer and use it in GitHub Desktop.
Messenger Auto Scroll Old Messages
// Run this and watch dates you wanna reach
var scrollingInterval = setInterval(function () {
document.querySelectorAll('.uiScrollableAreaWrap.scrollable')[2].scrollTop = 0;
}, 500);
// hit this, once you reach
clearInterval(scrollingInterval);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment