Skip to content

Instantly share code, notes, and snippets.

@corypina
Created October 11, 2018 22:17
Show Gist options
  • Save corypina/e663609bff7c88c10d71e334aa200790 to your computer and use it in GitHub Desktop.
Save corypina/e663609bff7c88c10d71e334aa200790 to your computer and use it in GitHub Desktop.
Jump above the anchor a given amount of pixels on click
window.addEventListener("hashchange", function () {
window.scrollTo(window.scrollX, window.scrollY - 100);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment