Apple says, the code

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

is supposed to make the the web app full screen from iPhone OS 2.1 and later. (Source: http://developer.apple.com/safari/library/documentation/AppleApplications/Reference/SafariHTMLRef/Articles/MetaTags.html#//apple_ref/doc/uid/TP40008193-SW3 )

But it doesn't seem to work.

Is there a way of hiding the title/location bar within Safari in an iPad WebApp?

link|improve this question

69% accept rate
feedback

5 Answers

up vote 41 down vote accepted

This only works after you save a bookmark to the app to the home screen. Not if you just browse to the site normally.

link|improve this answer
feedback

As a side note, make sure you add in the tag, refresh the page, then add the bookmark to your homescreen.

If you try bookmark the page, and add the tag after the iPad doesn't know to open it fullscreen.

link|improve this answer
feedback

It only opens the first (bookmarked) page full screen. Any next page will be opened WITH the address bar visible again. Whatever meta tag you put into your page header...

link|improve this answer
has anyone solved this? – Scott K Jun 17 '11 at 17:53
feedback

If you want to stay in a browser without launching a new window use this HTML code:

<a href="javascript:this.location = 'index.php?page=1'">
link|improve this answer
feedback

This site has a working workaround, same effect, uses some javascript to set the first child div to total height of viewport. http://webapp-net.com/Demo/Index.html

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.