Created
October 11, 2018 22:17
-
-
Save corypina/e663609bff7c88c10d71e334aa200790 to your computer and use it in GitHub Desktop.
Jump above the anchor a given amount of pixels on click
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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