Reputation: 108480
I know you can hide the address bar on iPhone/iPad/Android using the window.scrollTo
thing. However, nothing seems to get rid of the address bar on iPad. The only workaround I found was to add a meta tag and then let the user add the page to their home screen.
Am I missing something? Can you hide the address bar on iPad safari using some other trickery?
Upvotes: 3
Views: 9495
Reputation: 6159
It seems only be possible with the workaround you mentioned:
<meta name="apple-mobile-web-app-capable" content="yes" />
Upvotes: 4