How do you check if there is an internet connection using Javascript? That way I could have some conditionals saying "use the google cached version of JQuery during production, use either that or a local version during development, depending on the internet connection".
|
|
You could try:
Read more about the W3C's spec on offline web apps, however be aware that this will work best in modern web browsers, doing so with older web browsers may not work as expected, or at all. Alternatively, an XHR request to your own server isn't that bad of a method for testing your connectivity. Consider one of the other answers state that there are too many points of failure for an XHR, but if your XHR is flawed when establishing it's connection than it'd also be flawed during routine use anyhow. If your site is unreachable for any reason, then your other services running on the same servers will likely be unreachable also. That decision is up to you. In my opinion it's a suitable fallback from I'd recommend not making an XHR request to someone else's service, even google.com for that matter. Make the request to your server, or not at all. The best option in your case might be: In your html
In your js file (or possibly still in the
Then right before your close
Bizarrely enough, the reason this works is because writing to the objects attributes calls the browsers parsing engine again, which will have to parse the script tag and thus include the local file if the browser is deemed offline by the prior method. You might say, why put the script tag at the end of the What does it mean to be "online"There seems to be some confusion around what being "online" means. Consider that the internet is a bunch of networks, however sometimes you're on a VPN, without access to the internet "at-large" or the world wide web. Oftentimes companies have their own networks which have limited connectivity to other external networks, therefore you could be considered "online". Being online only entails that you are connected to a network, not the availability nor reachability of the services you are trying to connect to. Here is a great way to handle most cases: https://gist.github.com/louisremi/936493 |
|||||||||||||
|
|
Here's a way from Mobile Boilerplate that I like and works great. It's only 2 lines of plain js code. Two lines.http://html5boilerplate.com/mobile/
|
|||||
|
|
You can mimic the Ping command. Use Ajax to request a timestamp to your own server, define a timer using setTimeout to 5 seconds, if theres no response it try again. If there's no response in 4 attempts, you can suppose that internet is down. So you can check using this routine in regular intervals like 1 or 3 minutes. That seems a good and clean solution for me. |
|||
|
|
|
You can try by sending XHR Requests a few times, and then if you get errors it means there's a problem with the internet connection. Edit: |
|||||||||||||||
|
|
Ok, maybe a bit late in the game but what about checking with an online image? I mean, the OP needs to know if he needs to grab the Google CMD or the local JQ copy, but that doesn't mean the browser can't read Javascript no matter what, right?
Just my 2 cents |
|||
|
|
|
edit: this solution is only for subsequent calls when the page is already loaded and we need to detect if we still have internet access. that's how i interpreted the first version of the question. navigator.online is more elegant for the 'first-time-check' though. google should have a good uptime for this test :-) the first function is an event handler which is only being called, when the get-function will not succeed. the callback of the get-function will only be called on success.
|
|||||||||||||||||||
|
|
I wrote a jQuery plugin for doing this. By default it checks the current URL (because that's already loaded once from the Web) or you can specify a URL to use as an argument. Always doing a request to Google isn't the best idea because it's blocked in different countries at different times. Also you might be at the mercy of what the connection across a particular ocean/weather front/political climate might be like that day. |
||||
|
|
|
Sending XHR requests is bad because it could fail if that particular server is down. Instead, use googles API library to load their cached version(s) of jQuery. You can use googles API to perform a callback after loading jQuery, and this will check if jQuery was loaded successfully. Something like the code below should work:
The google API documentation can be found here. |
|||||||||||||
|
