Skip to content

Instantly share code, notes, and snippets.

@rkh
Created October 28, 2015 18:45
Show Gist options
  • Save rkh/70fc3a3d31d4849e10f8 to your computer and use it in GitHub Desktop.
Save rkh/70fc3a3d31d4849e10f8 to your computer and use it in GitHub Desktop.
var scrollPosition = sessionStorage.getItem("scrollPosition")
if(scrollPosition) window.scrollTo(0, scrollPosition)
document.addEventListener("scroll", function() {
sessionStorage.setItem("scrollPosition", window.pageYOffset | document.body.scrollTop)
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment