I'm trying to set the full screen mode on my iPhone Web App, I have read the Apple's documentation on apple-mobile-web-app-capable meta tag, but it doesn't work, can you help me? Thanks

link|improve this question
4  
Have you added it to your home screen and launched it that way? It won't work in normal Safari. – ceejayoz May 26 '11 at 19:18
feedback

3 Answers

You can also add a javascript function :

<body onload="setTimeout(function() { window.scrollTo(0, 1) }, 100);">
link|improve this answer
Thank, it's what I need – Cattani Simone May 27 '11 at 21:33
this works for the url bar, but is there a way to hide navigation bar at bottom? – bobighorus Mar 19 at 10:36
feedback
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta names="apple-mobile-web-app-status-bar-style" content="black-translucent" />
link|improve this answer
1  
I'm using this meta tagg, but it doesn't work – Cattani Simone May 26 '11 at 21:08
feedback

In the meta tag, the delimiters between the items should be commas-- not semi-colons.

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.