On my Jquery Mobile project I'm using:

<meta name="viewport" content="width=device-width, minimum-scale=1, maximum-scale=1">

I'm getting the safari browser Address bar and nav footer.

How can I hide that so I can just have my app showing please?

Thanks

link|improve this question

feedback

3 Answers

up vote 26 down vote accepted

You can setup a few meta tags to tell iOS that your site can be added to the Home Screen as a web app. Once launched from there, all of the Safari elements are hidden.

Check out the section titled "Hiding Safari User Interface Components" here.

You can specify start up splash screen images and custom icons for the app as it appears on the home screen.

<meta name="viewport" content="width=device-width, minimum-scale=1, maximum-scale=1">
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<link rel="apple-touch-icon" href="apple-touch-icon-57x57.png" />
<link rel="apple-touch-icon" sizes="72x72" href="apple-touch-icon-72x72.png" />
<link rel="apple-touch-icon" sizes="114x114" href="apple-touch-icon-114x114.png" />
<link rel="apple-touch-startup-image" href="apple-touch-startup-image-320x460.png" />
<link rel="apple-touch-startup-image" sizes="768x1004" href="apple-touch-startup-image-768x1004.png" />
link|improve this answer
This is perfect. Thanks very much for sharing. – Satch3000 Apr 25 '11 at 18:12
Ditto. Great find. Thanks! – John Mar 9 at 8:08
feedback

You should not need a <meta> tag. jQuery mobile should take care of hiding the address bar on iOS. Never been able to get the nav footer disappear myself.

link|improve this answer
I know that Sencha Touch hides them very well. I hope I can find a solution to get rid of both. – Satch3000 Apr 24 '11 at 16:19
1  
Also, your meta tag is missing height. According to this link forum.jquery.com/topic/… this is what you might be trying to do <meta name="viewport" content="initial-scale=1.0,maximum-scale=1.0,height=device-height,width=device-w‌​idth,user-scalable = no"> – Jayraj Apr 24 '11 at 16:43
Tried that be I lost my header toolbar :o/ – Satch3000 Apr 24 '11 at 17:28
feedback

I have both my header/address bar and footer bar hiding correctly, which is great.

Howver when I click on a link in the page it opens a new browser window that loses the black colouring in the status bar and the footer also reappears; despite each page sharing the same header containing these meta tags. Any solutions or ideas appreciated.

Rob Ganly

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.