I have an iPhone Web App. I'm interested in detecting if the app was loaded either from: 1. iPhone Safari 2. iPhone installed web app (via the add to my homescreen) which loads without the safari bars.
Any ideas?
|
I have an iPhone Web App. I'm interested in detecting if the app was loaded either from: 1. iPhone Safari 2. iPhone installed web app (via the add to my homescreen) which loads without the safari bars. Any ideas?
| ||||
|
feedback
|
|
You can determine whether a webpage is displayed in full-screen mode using the window.navigator.standalone read-only Boolean JavaScript property. http://developer.apple.com/safari/library/documentation/AppleApplications/Reference/SafariHTMLRef/Articles/MetaTags.html
| |||||
feedback
|
|
You can detect the mode via Javascript as described above - or you can use PHP and the user agent.
Enjoy! | ||||
|
feedback
|
|
Check the HTTP-Headers when accessing the site from iPhone Safari and the WebApp to see if they are different. I don't know if they are, but if they are, I'm sure you'll be able to implement that somewhere in your website. | |||
|
feedback
|
|
This is what I use, works great:
| |||
|
feedback
|