How do I hide the address bar on iPhone?
I tried two different methods so far:
The scroll down one pixel trick with JavaScript on page load
You can run the function when the site content is ready instead of using timeout
addEventListener("load", function() { window.scrollTo(1, 0); }, false);