How to detect that the Internet connection is offline in JavaScript?
|
|
|
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 |
|||||||||||||||||
|
|
There are a number of ways to do this:
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. |
|||||
|
|
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 |
|||||||||||
|
|
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 |
|||
|
|
|
You can use $.ajax()'s
From the doc:
So for example:
|
||||
|
|
|
Best i found that works is this:
|
||||
|
|
|
As olliej said, using the Recently, the WHATWG has specified the addition of the 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. |
|||
|
|
|
I had to make a web app (ajax based) for a customer who works a lot with schools, these schools have often a bad internet connection I use this simple function to detect if there is a connection, works very well! I use CodeIgniter and Jquery:
|
|||
|
|
|
From Gears itself: |
||||
|
|
|
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. |
|||
|
|
|
Here is a snippet of a helper utility I have. This is namespaced javascript:
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. |
|||||
|
|
Ping your ISP, e.g: their website. |
|||||
|
|
Another question is what are you going to do about the connection being down? Check out Gears. |
||||
|
You can use my solution if using Gears: http://sviudes.blogspot.com/2009/08/google-gears-comprobar-si-estamos.html |
||||
|
|
|
My way.
|
|||
|
|
|
exaple of Jquery code, that work.
|
||||
|
|
