Skip to content

Instantly share code, notes, and snippets.

@DanielRapp
Created March 5, 2011 03:19
Show Gist options
  • Save DanielRapp/856068 to your computer and use it in GitHub Desktop.
Save DanielRapp/856068 to your computer and use it in GitHub Desktop.
A bookmarklet that reverses the direction of scrolling
javascript:d=document;b=d.body;s=b.scrollTop;d.onscroll=function(){n=s-(b.scrollTop-s)*2;scroll(0,n<1?1:n);s=b.scrollTop}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment