Skip to content

Instantly share code, notes, and snippets.

@dnsmob
dnsmob / HideMobileAddressBar.js
Created October 7, 2015 14:14 — forked from danro/HideMobileAddressBar.js
Hide Browser Address Bar - Android + iPhone
function configAddressBar (addHeight) {
var defaultHeight = 50;
if (typeof addHeight == "undefined") addHeight = 1;
function hideAddressBar() {
if(!window.location.hash)
{
if(document.height < window.outerHeight)
{
document.body.style.height = (window.outerHeight + defaultHeight + addHeight) + 'px';
}