Skip to content

Instantly share code, notes, and snippets.

@luckyshot
Created April 9, 2013 14:30
Show Gist options
  • Save luckyshot/5346124 to your computer and use it in GitHub Desktop.
Save luckyshot/5346124 to your computer and use it in GitHub Desktop.
JavaScript - Remember page scrolled position
$(document)
.scrollTop( (localStorage.scrollPos) ? localStorage.scrollPos : 0 )
.on('scroll', function() {
localStorage.scrollPos = $(document).scrollTop();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment