Skip to content

Instantly share code, notes, and snippets.

@ranbena
Created November 27, 2012 19:27
Show Gist options
  • Save ranbena/4156431 to your computer and use it in GitHub Desktop.
Save ranbena/4156431 to your computer and use it in GitHub Desktop.
Hiding the address bar
function hideAddressBar() {
window.setTimeout(function(){
window.scrollTo(0,0);
}, 0);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment