iPhone Mobile App (safari): no onblur? wrong onfocus? no onbeforeunload? WTF? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T06:18:14Z http://stackoverflow.com/feeds/question/856031 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/856031/iphone-mobile-app-safari-no-onblur-wrong-onfocus-no-onbeforeunload-wtf 2 iPhone Mobile App (safari): no onblur? wrong onfocus? no onbeforeunload? WTF? Drekar 2009-05-13T04:13:13Z 2009-06-26T01:09:04Z <p>So I just made my web-application "iPhone Friendly". So you can add it to your home screen and it has an icon, no chroming, etc etc.</p> <p>The problem is that I want to display a custom splash-screen every time it is opened from the iPhone home screen. Right now it just shows the last screen viewed while it basically runs a refresh.</p> <p>I have tried attaching events to window.onfocus, window.onblur, window.onbeforeunload, and NONE of them seem to work right when the app is being run in "mobile-app" mode.</p> <p>Am I being dumb? Er.... don't answer that. Does anyone know what is wrong?</p> http://stackoverflow.com/questions/856031/iphone-mobile-app-safari-no-onblur-wrong-onfocus-no-onbeforeunload-wtf/856041#856041 3 Answer by Isaac Waller for iPhone Mobile App (safari): no onblur? wrong onfocus? no onbeforeunload? WTF? Isaac Waller 2009-05-13T04:18:34Z 2009-05-13T04:18:34Z <p>Unfortunately, with the restrictions Apple imposes, this is impossible.<br /> My recommendation is to create a App Store application with a full-screen WebView. Then, you can use a default.png file and a ImageView for your splash screen. Also, you get a ton more visibility on the App Store. (Also, if you go this route, check out PhoneGap - <a href="http://phonegap.com/" rel="nofollow">http://phonegap.com/</a>).</p> http://stackoverflow.com/questions/856031/iphone-mobile-app-safari-no-onblur-wrong-onfocus-no-onbeforeunload-wtf/856308#856308 1 Answer by micmcg for iPhone Mobile App (safari): no onblur? wrong onfocus? no onbeforeunload? WTF? micmcg 2009-05-13T06:06:17Z 2009-05-13T06:06:17Z <p>The loading screen you are talking about is the loading screen for an APPLICATION, not a webpage, i.e its the loading screen for Safari. This has nothing to do with "the restrictions Apple imposes", just with the fact that because your web app still runs in the browser, the browser needs to load first. Like was also said, if you want to get around this you need to build your own app, in which you can specify the splash screen. </p> http://stackoverflow.com/questions/856031/iphone-mobile-app-safari-no-onblur-wrong-onfocus-no-onbeforeunload-wtf/1046921#1046921 2 Answer by Drekar for iPhone Mobile App (safari): no onblur? wrong onfocus? no onbeforeunload? WTF? Drekar 2009-06-26T01:09:04Z 2009-06-26T01:09:04Z <p>Update!! In the iPhone 3.0 update, mobile safari now supports the ability to specify an image to be used on startup:</p> <p> </p> <p>Remember this only works with iPhones that are running 3.0+</p>