vote up 2 vote down star

Is there a way of telling whether my Web Application has been launched from a button on the user's iPhone home screen? I want to display a "add this WebApp to your home screen" prompt if the user has accessed the WebApp via safari by typing in a URL.

flag

4 Answers

vote up 2 vote down check

window.navigator.standalone

True if you have launched from the Home Screen. False if in the Safari browser.

Documented here:

http://developer.apple.com/safari/library/documentation/AppleApplications/Reference/SafariHTMLRef/Articles/MetaTags.html

It works with OS 2.1 and up.

Peter

link|flag
Thanks! I has just about given up on this one :-) – James Oct 8 at 0:36
vote up 0 vote down

In Safari, the scrollY will start at a negative value if inside Safari, and at 0 if running as an application.

Likely the viewport will change as well (if it does, this is a more reliable method)

link|flag
I think the OP is talking about the user opening Safari from a bookmark saved to the user's home screen, not Webkit instances in non-Safari applications – Gareth Sep 26 at 15:58
Yes, this is what I'm talking about too. – rpetrich Sep 26 at 16:43
vote up 0 vote down

If I remember correctly there's a thing in the server log that shows what the user's previous page was. So the only way I can think of is if the user was on a previous page display the "add" thing, and if they didn't don't

link|flag
vote up 0 vote down

jQTouch detects this (try the demo). It's open source, so you should be able to find out how.

link|flag

Your Answer

Get an OpenID
or

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