Checking online status from an iphone web app - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T14:21:05Zhttp://stackoverflow.com/feeds/question/66492http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/66492/checking-online-status-from-an-iphone-web-app3Checking online status from an iphone web appTed2008-09-15T20:15:13Z2009-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#665211Answer by Loren Segal for Checking online status from an iphone web appLoren Segal2008-09-15T20:18:20Z2008-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#4266910Answer by Isaac Waller for Checking online status from an iphone web appIsaac Waller2009-01-09T01:01:54Z2009-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#7253780Answer by pr1001 for Checking online status from an iphone web apppr10012009-04-07T12:13:50Z2009-04-07T12:13:50Z<p>A quick test on the iPhone shows that it is available from iPhone OS 2.2.</p>