David Hellsing
David Hellsing

Reputation: 108480

Hide address bar in iPad

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

Answers (1)

Lenar Hoyt
Lenar Hoyt

Reputation: 6159

It seems only be possible with the workaround you mentioned:

<meta name="apple-mobile-web-app-capable" content="yes" />

Ref #1 Ref #2

Upvotes: 4

Related Questions