vote up 9 vote down star
9

How to detect that the internet connection is offline in JavaScript?

flag

45% accept rate

14 Answers

vote up 16 vote down check

You can determine that the connection is lost by making failed XHR requests.

The standard approach is to retry the request a few times. If it doesn't go through, alert the user to check the connection, and fail gracefully.

Sidenote: To put the entire application in an "offline" state may lead to a lot of error-prone work of handling state.. wireless connections may come and go, etc. So your best bet may be to just fail gracefully, preserve the data, and alert the user.. allowing them to eventually fix the connection problem if there is one, and to continue using your app with a fair amount of forgiveness.

Sidenote: You could check a reliable site like google for connectivity, but this may not be entirely useful as just trying to make your own request, because while google may be available, your own application may not be, and you're still going to have to handle your own connection problem. Trying to send a ping to google would be a good way to confirm that the internet connection itself is down, so if that information is useful to you, then it might be worth the trouble.

Sidenote: Sending a Ping could be achieved in the same way that you would make any kind of two-way ajax request, but sending a ping to google in this case would pose some challenges. First, we'd have the same cross-domain issues that are typically encountered in making ajax communications. One option is to set up a server-side proxy, wherein we actually ping google (or whatever site), and return the results of the ping to the app.. This is a catch-22, because if the internet connection is actually the problem, we won't be able to get to the server, and if the connection problem is only on our own domain, we won't be able to tell the difference. Other cross-domain techniques could be tried, for example, embedding an iframe in your page which points to google.com, and then polling the iframe for success/failure (examine the contents, etc). Embedding an image may not really tell us anything, because we need a useful response from the communication mechanism in order to draw a good conclusion about what's going on. So again, determining the state of the internet connection as a whole may be more trouble than it's worth. You'll have to weight these options out for your specific app.

link|flag
6  
That's, uh, a lot of bolded text. After a while it stops losing its meaning, you know. ;) – Paolo Bergantino May 3 at 1:15
vote up 5 vote down

There are a number of ways to do this:

  • AJAX request to your own website. If that request fails, there's a good chance it's the connection at fault. The JQuery documentation has a section on handling failed AJAX requests. Beware of the Same Origin Policy when doing this, which may stop you from accessing sites outside your domain.
  • You could put an onerror in an img, like

    <img src='http://www.example.com/singlepixel.gif' 
          onerror='alert("Connection dead");' />
    

    This method could also fail if the source image is moved / renamed, and would generally be an inferior choice to the ajax option.

So there are several different ways to try and detect this, none perfect, but in the absence of the ability to jump out of the browser sandbox and access the user's net connection status directly, they seem to be the best options.

link|flag
1  
onerror is not consistently supported in major browsers. – keparo Oct 10 '08 at 15:36
vote up 3 vote down

Your can find a small script using jQuery here, doing exactly what you want to do.

link|flag
vote up 2 vote down

IE 8 will support the window.navigator.onLine property.

But of course that doesn't help with other browsers or operating systems. I predict other browser vendors will decide to provide that property as well given the importance of knowing online/offline status in Ajax applications.

Until that happens, either XHR or an Image() or <img> request can provide something close to the functionality you want.

link|flag
navigator.onLine is part of HTML5 -- other browsers already have development versions that provide it -- it's already available in Firefox 3 today. – olliej Oct 9 '08 at 23:25
-but unfortunately not available in earlier versions of IE, which we're often required to support. – keparo Oct 10 '08 at 18:09
vote up 0 vote down

The HTML5 Application Cache API specifies navigator.onLine, which is currently available in the IE8 betas, WebKit (eg. Safari) nightlies, and is already supported in Firefox 3

link|flag
vote up 0 vote down

Another question is what are you going to do about the connection being down? Check out Gears

link|flag
Unfortunately, the adoption of Gears is currently quite poor. – keparo Oct 13 '08 at 6:36
If it is important to your app, you may encourage it – Steve g Oct 13 '08 at 13:26
vote up 0 vote down

ping your ISP, e. g: it's website.

link|flag
1  
how do you do that with ajax or jquery, if you please – Richard Jun 14 at 12:05
vote up 0 vote down

You can use $.ajax()'s error callback, which fires if the request fails. If textStatus equals the string "timeout" it probably means connection is broken:

function (XMLHttpRequest, textStatus, errorThrown) {
  // typically only one of textStatus or errorThrown 
  // will have info
  this; // the options for this ajax request
}

From the doc:

Error: A function to be called if the request fails. The function is passed three arguments: The XMLHttpRequest object, a string describing the type of error that occurred and an optional exception object, if one occurred. Possible values for the second argument (besides null) are "timeout", "error", "notmodified" and "parsererror". This is an Ajax Event

So for example:

 $.ajax({
   type: "GET",
   url: "keepalive.php",
   success: function(msg){
     alert("Connection active!")
   }
   error: function(XMLHttpRequest, textStatus, errorThrown) {
       if(textStatus == 'timeout') {
           alert('Connection seems dead!');
       }
   }
 });
link|flag
vote up 0 vote down

if I use success instead off complete something go's wrong

it seems to work with complete.

Should I only test for timeout, I will get no inmediate alert. The error response will be "error" Should I also test for that string or is that to general if you only want to test the connection?

$.ajax({
    		type: "POST", url: "/includes/livetabs.php", data: "actie=update",
    		complete: function(data){
    			loading.fadeOut(2000);
    			berichtlijst.html(data.responseText).fadeIn(2000);
    		}

Richard

link|flag
vote up 0 vote down

hey, you can use my solution if using gears:

http://sviudes.blogspot.com/2009/08/google-gears-comprobar-si-estamos.html

link|flag
vote up 0 vote down

Very interesting script that resumes a lot of above:

http://www.codeproject.com/KB/scripting/InternetConnectionTest.aspx

It is very useful, and because it is Ajax based, is asyncronous, so you can check if the Internet is conected without leaving the original page. Using this with a timer you can also have a component in the page checking every n minutes.

link|flag
vote up 0 vote down

As olliej said, using the navigator.onLine browser property is preferable than sending network requests and, accordingly with developer.mozilla.org/En/Online_and_offline_events, it is even supported by old versions of Firefox and IE.

Recently, the WHATWG has specified the addition of the online and offline events, in case you need to react on navigator.onLine changes.

Please also pay attention to the link posted by Daniel Silveira which points out that relying on those signal/property for syncing with the server is not always a good idea.

link|flag
vote up 0 vote down

here is a snippet of a helper utility I have. This is namespaced javascript:

network: function() {
    var state = navigator.onLine ? "online" : "offline";
    return state;
}

You should use this with method detection else fire off an 'alternative' way of doing this. The time is fast approaching when this will be all that is needed. The other methods are hacks.

link|flag

Your Answer

Get an OpenID
or

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