Skip to content

Instantly share code, notes, and snippets.

@simonpioli
Created October 9, 2013 14:10
Show Gist options
  • Save simonpioli/6901934 to your computer and use it in GitHub Desktop.
Save simonpioli/6901934 to your computer and use it in GitHub Desktop.
Hide iOS Safari address bar on window load. Source: http://davidwalsh.name/hide-address-bar
// 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