Created
October 13, 2016 03:53
-
-
Save dzfranklin/26b372aa3b79fb2bafd4e38576a58541 to your computer and use it in GitHub Desktop.
Save the current scroll position, and then jump to it later
This file contains 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
(function(w, g){ | |
if(!g){ | |
alert("Error: no saved scroll position"); | |
return; | |
} | |
w.scrollX = g.pos[0]; | |
w.scrollY = g.pos[1]; | |
}(window, window.save_scroll_globals)) |
This file contains 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.save_scroll_globals = {}; | |
(function(w, g){ | |
g.pos = [w.scrollX, w.scrollY]; | |
}(window, window.save_scroll_globals)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment