Checking online status from an iphone web app - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T14:21:05Z http://stackoverflow.com/feeds/question/66492 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/66492/checking-online-status-from-an-iphone-web-app 3 Checking online status from an iphone web app Ted 2008-09-15T20:15:13Z 2009-04-07T12:13:50Z <p>Is there a way to check to see if an iphone is online from a web app. That is, in mobile safari, can I check the online status of the device to see if I should try an ajax call or not.</p> <p>In firefox/regular webkit, this would be </p> <pre><code>if(navigator.onLine) { onlineCode() } </code></pre> http://stackoverflow.com/questions/66492/checking-online-status-from-an-iphone-web-app/66521#66521 1 Answer by Loren Segal for Checking online status from an iphone web app Loren Segal 2008-09-15T20:18:20Z 2008-09-15T20:18:20Z <p>That same code should work in the WebKit nightly build as of May 16th 2008. I guess that means you need to hope the 2.1 update included a new build of safari.</p> <p><a href="https://bugs.webkit.org/show_bug.cgi?id=19105" rel="nofollow">https://bugs.webkit.org/show_bug.cgi?id=19105</a></p> http://stackoverflow.com/questions/66492/checking-online-status-from-an-iphone-web-app/426691#426691 0 Answer by Isaac Waller for Checking online status from an iphone web app Isaac Waller 2009-01-09T01:01:54Z 2009-01-09T01:01:54Z <p>img src="http://aonlinesite.com/a-really-little-image.png" onload="Intenet!" onerror="NoInternet!" </p> http://stackoverflow.com/questions/66492/checking-online-status-from-an-iphone-web-app/725378#725378 0 Answer by pr1001 for Checking online status from an iphone web app pr1001 2009-04-07T12:13:50Z 2009-04-07T12:13:50Z <p>A quick test on the iPhone shows that it is available from iPhone OS 2.2.</p>