Skip to content

Instantly share code, notes, and snippets.

@gusaaaaa
Created May 31, 2013 20:57
Show Gist options
  • Save gusaaaaa/5687933 to your computer and use it in GitHub Desktop.
Save gusaaaaa/5687933 to your computer and use it in GitHub Desktop.
Bookmarklet that vertically scrolls the page to the mouse pointer on click. Useful when you are reading a long text.
javascript:(function() { window.onclick = function(e) { window.scroll(0, e.pageY - 20) } })()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment