Skip to content

Instantly share code, notes, and snippets.

View Johnba's full-sized avatar

John Molina Johnba

View GitHub Profile
@Johnba
Johnba / HideMobileAddressBar.js
Created September 3, 2011 16:09 — forked from mhammonds/HideMobileAddressBar.js
Hide Browser Address Bar - Android + iPhone
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 );