Reputation: 1
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
Reputation: 15365
This works:
window.onload = function() {
setTimeout(function(){window.scrollTo(0, 1);}, 1);
}
Upvotes: 1
Reputation: 6708
Use JavaScript to scroll the page down 1px. Doing so will automatically hide the address bar.
Upvotes: 1