Skip to content

Instantly share code, notes, and snippets.

@zerostyle
Last active December 12, 2015 10:39
Show Gist options
  • Save zerostyle/4761163 to your computer and use it in GitHub Desktop.
Save zerostyle/4761163 to your computer and use it in GitHub Desktop.
Hide address bar
function hideAddressBar() {
if( /iphone|ipod|android/gi.test( navigator.userAgent ) && !/crios/gi.test( navigator.userAgent ) ) {
window.addEventListener( 'load', removeAddressBar, false );
window.addEventListener( 'orientationchange', removeAddressBar, false );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment