navigator.onLine is still returning true when I turn off Wi-Fi (Airport on my notebook in OS X). This is counterintuitive behavior. But when I set "work offline" in a browser like Firefox, it correctly returns false. Is this expected?

alert(navigator.onLine ? "online" : "offline");
link|improve this question

60% accept rate
Firefox's (and IE's and Opera's) implementation is wrong. See my comment to that effect here: bugzilla.mozilla.org/show_bug.cgi?id=654579#c9 – thewoolleyman Mar 11 at 9:21
feedback

2 Answers

up vote 1 down vote accepted

Yes. The browser doesn't provide network connectivity information to the page, but rather uses Work Offline's status as the value.

link|improve this answer
It seems odd because if I turn off Wi-Fi and cellular data by turning on airplane mode on an iPhone, and then return to that page without reloading, it returns true as offline (which is correct). – chimerical May 6 '10 at 16:10
Browsers may want to detect if network connectivity is down and then set the Work Offline variable to false. However, the user may always change this variable herself. – Delan Azabani May 8 '10 at 0:27
feedback

Some browser vendors detect whether you have network connectivity, others use the user selected "Work Offline" mode. See more details in this comment:

http://stackoverflow.com/a/9677537/25192

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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