Skip to content

Instantly share code, notes, and snippets.

@Usse
Last active December 18, 2015 15:19
Show Gist options
  • Save Usse/5803789 to your computer and use it in GitHub Desktop.
Save Usse/5803789 to your computer and use it in GitHub Desktop.
Hide the url bar Works on iOS and some Android phones
function hideURLbar() {
if (window.location.hash.indexOf('#') == -1) {
window.scrollTo(0, 1);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment