Skip to content

Instantly share code, notes, and snippets.

@dgreenway
Created September 27, 2013 17:25
Show Gist options
  • Save dgreenway/6732000 to your computer and use it in GitHub Desktop.
Save dgreenway/6732000 to your computer and use it in GitHub Desktop.
Hide the address bar in mobile browsers
// When ready...
window.addEventListener("load",function() {
// Set a timeout...
setTimeout(function(){
// Hide the address bar!
window.scrollTo(0, 1);
}, 0);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment