Skip to content

Instantly share code, notes, and snippets.

@field2
Created September 14, 2012 11:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save field2/3721388 to your computer and use it in GitHub Desktop.
Save field2/3721388 to your computer and use it in GitHub Desktop.
Scroller
<script type="text/javascript">
// When ready...
window.addEventListener("load",function() {
// Set a timeout...
setTimeout(function(){
// Hide the address bar!
window.scrollTo(0, 1);
}, 0);
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment