Skip to content

Instantly share code, notes, and snippets.

@dmarticus
Last active October 16, 2020 21:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dmarticus/6e785098080de33673d3501df929211c to your computer and use it in GitHub Desktop.
Save dmarticus/6e785098080de33673d3501df929211c to your computer and use it in GitHub Desktop.
infinite scrolls the grailed closet to the end of it all
var lastScrollHeight=0;function autoScroll(){var l=document.documentElement.scrollHeight;l!=lastScrollHeight&&(lastScrollHeight=l,document.documentElement.scrollTop=l)}window.setInterval(autoScroll,100);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment