Skip to content

Instantly share code, notes, and snippets.

@harshamv
Forked from mhammonds/HideMobileAddressBar.js
Created June 25, 2014 13:54
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 harshamv/73030707efa915979011 to your computer and use it in GitHub Desktop.
Save harshamv/73030707efa915979011 to your computer and use it in GitHub Desktop.
function hideAddressBar()
{
if(!window.location.hash)
{
if(document.height < window.outerHeight)
{
document.body.style.height = (window.outerHeight + 50) + 'px';
}
setTimeout( function(){ window.scrollTo(0, 1); }, 50 );
}
}
window.addEventListener("load", function(){ if(!window.pageYOffset){ hideAddressBar(); } } );
window.addEventListener("orientationchange", hideAddressBar );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment