Skip to content

Instantly share code, notes, and snippets.

@dzfranklin
Created October 13, 2016 03:53
Show Gist options
  • Save dzfranklin/26b372aa3b79fb2bafd4e38576a58541 to your computer and use it in GitHub Desktop.
Save dzfranklin/26b372aa3b79fb2bafd4e38576a58541 to your computer and use it in GitHub Desktop.
Save the current scroll position, and then jump to it later
(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))
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