Created
July 23, 2014 07:00
-
-
Save frayhan32/2dd706a70eb2b9a77710 to your computer and use it in GitHub Desktop.
disappearAddressBarOnMobileWebView
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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