Skip to content

Instantly share code, notes, and snippets.

@frayhan32
Created July 23, 2014 07:00
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 frayhan32/2dd706a70eb2b9a77710 to your computer and use it in GitHub Desktop.
Save frayhan32/2dd706a70eb2b9a77710 to your computer and use it in GitHub Desktop.
disappearAddressBarOnMobileWebView
<script>
// Hides mobile browser's address bar when page is done loading.
window.addEventListener('load', function(e) {
setTimeout(function() { window.scrollTo(0, 1); }, 1);
}, false);
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment