Is there a way to disable the status bar in iPhone web apps? I'm working on something that requires a fixed, fullscreen view, and the status bar is rather annoying.
Even after installing to the home screen, this doesn't work.
Stefan Kendall
2010-05-23 23:46:53
"If content is set to yes, the web application runs in full-screen mode; otherwise, it does not. The default behavior is to use Safari to display web content. You can determine whether a webpage is displayed in full-screen mode using the window.navigator.standalone read-only Boolean JavaScript property. http://developer.apple.com/safari/library/documentation/appleapplications/reference/safarihtmlref/articles/metatags.html
Mike Atlas
2010-05-24 00:08:04
This definition of "fullscreen" does not hide the status bar. window.navigator.standalone = true, and the status bar persists.
Stefan Kendall
2010-05-24 00:49:01