Skip to content

Instantly share code, notes, and snippets.

@hughker
Forked from victornpb/HideAddressBar.js
Created April 8, 2016 17:39
Show Gist options
  • Save hughker/d35b4e40ef79e140ec85464cc660669a to your computer and use it in GitHub Desktop.
Save hughker/d35b4e40ef79e140ec85464cc660669a to your computer and use it in GitHub Desktop.
Hide the address bar on mobile devices.
/** Hide the address bar - vitim.us */
function hideAddressBar(){
setTimeout(function(){
if(scrollY) return;
scrollTo(scrollX, 1);
setTimeout(function()
if(scrollY==1)
scrollTo(scrollX, 0);
}, 1);
}, 1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment