user1484394
user1484394

Reputation: 1

Hide mobile safari address bar

Does anyone know the meta tag I have to use in order to hide safari or any other mobile browser address bar after the page load?

Upvotes: 0

Views: 590

Answers (2)

Jason
Jason

Reputation: 15365

This works:

window.onload = function() {
    setTimeout(function(){window.scrollTo(0, 1);}, 1);
}

Upvotes: 1

Matt K
Matt K

Reputation: 6708

Use JavaScript to scroll the page down 1px. Doing so will automatically hide the address bar.

Upvotes: 1

Related Questions