vote up 79 vote down star
71

What would be a good way to attempt to load the hosted jQuery at Google (or other Google hosted libs), but load my copy of jQuery if the Google attempt fails?

I'm not saying Google is flaky. There are cases where the Google copy is blocked (apparently in Iran, for instance).

Would I set up a timer and check for the jQuery object?

What would be the danger of both copies coming through?

Not really looking for answers like "just use the Google one" or "just use your own." I understand those arguments. I also understand that the user is likely to have the Google version cached. I'm thinking about fallbacks for the cloud in general.


Edit: This part added...

Since Google suggests using google.load to load the ajax libraries, and it performs a callback when done, I'm wondering if that's the key to serializing this problem.

I know it sounds a bit crazy. I'm just trying to figure out if it can be done in a reliable way or not.


Update: jQuery now hosted on Microsoft's CDN.

http://www.asp.net/ajax/cdn/

flag

16  
Good question. Also, good caveat. Too many SO answers are "don't do that!" not: "Ok, here's how to do that." – Jay Stevens Jun 18 at 17:54
1  
Of course the first answer was "don't use the google hosted version." :-) – Nosredna Jun 18 at 17:59
1  
Of course it was because if you want to host a serious web site, you dont rely on someone else hosting your files. – Bryan Migliorisi Jun 18 at 18:09
1  
@Bryan Migliorisi, I guess Twitter is not that serious after all? But I admit they had their problems with Google like a month ago when Google went down. – Ionut G. Stan Jun 18 at 18:11
4  
The merits of using Google or not for JS lib hosting is a worthy one, but it's been discussed in several other threads. I was looking for technical answers regarding JS fallback on loading delays. – Nosredna Jun 18 at 18:18
show 3 more comments

7 Answers

vote up 52 vote down check

One more reason to not use Google-hosted jQuery is that in some countries, Google's domain name is banned.

But this is how you achieve it:

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js"></script>
<script type="text/javascript">
if (typeof jQuery == 'undefined')
{
    document.write(unescape("%3Cscript src='/path/to/your/jquery' type='text/javascript'%3E%3C/script%3E"));
}
</script>

This should be in your page's <head> and any jQuery ready event handlers should be in the <body> to avoid errors (although it's not full-proof!).

link|flag
7  
This may not work because when the browser does the check for the jQuery object, it may be currently downloading the jQuery file and not done parsing it yet. Then you'll end up including it twice. – Ryan Doherty Jun 18 at 18:05
3  
Aren't javascript downloads blocking (synchronous) already? Seems to me the double-copy issue would therefore not be a problem. – Matt Sherman Jun 22 at 2:08
8  
Javascript downloads should be synchronous already, as Matt Sherman said. Otherwise, many problems would occur if the page tried to execute an inline script that relied on a library that was only half downloaded, or a library extension was executed without the library fully downloaded and executed. That's also one reason why Yahoo YSlow recomends placing javascript at the end of pages; so that it doesn't block the downloading of other page elements (including styles and images). At the very least, the browser would have to delay execution to occur sequentially. – GApple Jun 24 at 20:16
10  
Small fix from a validator fanatic: The string '</' is not allowed in JavaScript, because it could be misinterpreted as the end of the script tag (SGML short tag notation). Do '<'+'/script>' instead. Cheers, – Boldewyn Jun 26 at 8:13
1  
This example will not work. 1) if Google ajax library is not available it'll have to time out first before failing. This may take a while. In my test of disconnecting my computer from the network it just tried and tried and tried and didn't timeout. 2) if (!jQuery) will throw an error because jQuery is not defined so Javascript doesn't know what to do with it. – RedWolves Jun 28 at 13:42
show 12 more comments
vote up -10 vote down

I wouldn't rely on a third party to host an important script, even if it is Google.

One reason: It is one more domain to have to resolve on your site.

Another reason: Google has had their share of downtime. They are not perfect, you know. Would you want your site being unusable because a third party stopped serving crucial files? I wouldn't.

link|flag
8  
That's why I asked the question. :-) – Nosredna Jun 18 at 17:58
3  
Most people should already have Google.com pre-cached in their DNS tables. Resolving domains shouldn't be a concern anyway though since it is considered a good practice to use several domains on one page to speed up loading of your site anyway. – Dan Herbert Jun 18 at 18:02
4  
An extra DNS lookup is actually negligible compared the the benefits of fetching a resource on a different domain (more http requests total) and most likely closer to the user (because Google has datacenters around the world). – Ryan Doherty Jun 18 at 18:03
Yes, but too many extra DNS lookups will cause a slowdown. – Nate Bross Jun 18 at 18:16
6  
Based one what? Google's DNS will almost certainly be cached – micmcg Jun 19 at 5:16
vote up -2 vote down

You can test the effects of both coming through by including jquery twice in your website right now and seeing what that does.

link|flag
vote up -5 vote down

I don't think you can do this reliably on the client side. One way to achieve this is to use a simple ashx handler to go download the google version and spit it out to your client side code.

In your ashx handler you can test the google version, if it happens to be down you can insert your own version from a file on your server. This way, you get the latest up-to-date version from google while having the ability to override and insert your own version.

link|flag
3  
Yeah, but that eliminates the advantage of the Google one likely already being cached on the client's machine (because so many sites are already using the Google one). I might as well not even use the Google one if I'm just going to pass it along instead of hand off the bandwidth to Google. – Nosredna Jun 18 at 18:22
I was only addressing the up-to-date version issue. You are correct this will not improve performance. – Nate Bross Jun 18 at 18:43
Yeah. Good point on the versioning. Although I always lock to a version I've tested with. – Nosredna Jun 18 at 19:00
vote up 22 vote down

This seems to work for me:

<html>
<head>
<script type="text/javascript" src="http://www.google.com/jsapi"></script>
<script type="text/javascript">
// has the google object loaded?
if (window.google && window.google.load) {
    google.load("jquery", "1.3.2");
} else {
    document.write('<script type="text/javascript" src="http://joecrawford.com/jquery-1.3.2.min.js"><\/script>');
}
window.onload = function() {
    $('#test').css({'border':'2px solid #f00'});
};
</script>
</head>
<body>
    <p id="test">hello jQuery</p>
</body>
</html>

The way it works is to use the google object that calling http://www.google.com/jsapi loads onto the window object. If that object is not present, we are assuming that access to Google is failing. If that is the case, we load a local copy using document.write. (I'm using my own server in this case, please use your own for testing this).

I also test for the presence of window.google.load - I could also do a typeof check to see that things are objects or functions as appropriate. But I think this does the trick.

Here's just the loading logic, since code highlighting seems to fail since I posted the whole HTML page I was testing:

if (window.google && window.google.load) {
        google.load("jquery", "1.3.2");
    } else {
        document.write('<script type="text/javascript" src="http://joecrawford.com/jquery-1.3.2.min.js"><\/script>');
    }

Though I must say, I'm not sure that if this is a concern for your site visitors you should be fiddling with the Google AJAX Libraries API at all.

Fun fact: I tried initially to use a try..catch block for this in various versions but could not find a combination that was as clean as this. I'd be interested to see other implementations of this idea, purely as an exercise.

link|flag
What is the advantage of using google.load in this situation, rather than loading ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js directly, like Rony suggested? I guess loading it directly catches issues with removed libraries as well (what if Google stops serving JQuery 1.3.2). Furthermore, Rony's version notices network problems AFTER www.google.com/jsapi has been fetched, especially when jsapi has been loaded from cache? One might need to use the google.load callback to be sure (or maybe there's some return value to include the google.load in the if(..)). – Arjan van Bentem Jun 27 at 8:32
If one is testing for the presence of Google.com, one could make a network call, or one could check for the presence of the "gatekeeper" object. What I'm doing is checking for the google object and its "load" function. If both of those fail, no google, and I need the local version. Rony's version actually ignores the www.google.com/jsapi URL entirely, so I'm not sure why you indicate that it will have been fetched. – artlung Jun 27 at 15:26
In the end, all that's required is that the jquery library is loaded. Any Google library is not a requirement. In Rony's answer, one knows for sure if loading from Google (or the cache) succeeded. But in your check for "if (window.google && window.google.load)", the jquery library is still not loaded. The actual loading of the jquery library is not validated? – Arjan van Bentem Jun 27 at 18:45
ah, I see how I caused the confusion. "Rony's version notices network problems AFTER www.google.com/jsapi has been fetched" should better read: "Your version does not notice network problems AFTER www.google.com/jsapi has been fetched". – Arjan van Bentem Jun 27 at 18:47
We've recently switched to using Google as our jQuery host; if we get any bug reports from blocked users, I'll be using a variant of your answer to refactor our client code. Good answer! – Jarrod Dixon Jul 26 at 7:45
vote up 3 vote down

There are some great solutions here, but I'll like to take it one step further regarding the local file.

In a scenario when Google does fail, it should load a local source but maybe a physical file on the server isn't necessarily the best option. I bring this up because I'm currently implementing the same solution, only I want to fall back to a local file that gets generated by a data source.

My reasons for this is that I want to have some piece of mind when it comes to keeping track of what I load from Google vs. what I have on the local server. If I want to change versions, I'll want to keep my local copy synced with what I'm trying to load from Google. In an environment where there are many developers, I think the best approach would be to automate this process so that all one would have to do is change a version number in a configuration file.

Here's my proposed solution that should work in theory:

  • In an application configuration file, I'll store 3 things: absolute url for the library, the url for the js api, and the version number
  • Write a class which gets the file contents of the library itself (gets the url from app config), stores it in my datasource with the name and version number
  • Write a handler which pulls my local file out of the db and caches the file until the version number changes.
  • If it does change (in my app config), my class will pull the file contents based on the version number, save it as a new record in my datasource, then the handler will kick in and serve up the new version.

In theory, if my code is written properly, all I would need to do is change the version number in my app config then viola! You have a fallback solution which is automated, and you don't have to maintain physical files on your server.

What does everyone think? Maybe this is overkill, but it could be an elegant method of maintaining your ajax libraries.

Acorn

link|flag
vote up -1 vote down

This is just a thought, but could you maybe include the jQuery serverside? So, you have a serverside file called jQuery.php/jQuery.aspx/jQuery.asp (whatever server side language you use). Then you just include that file in your head in a script tag like so ... <script type="text/javascript" src="jQuery.php"></script>. Inside your server side javascript file you could do an http request to Google to get their copy of jQuery and if the http request fails you get your own copy. Then you only have it included once and you get your failover. Thoughts?

link|flag
There is no benefit to this method over hosting JQuery by yourself. The main reason to use Google's JQuery is that people have it cached already in their browser, so no download at all is required. In this case, the browser would have to cache your server-side script, since it's coming from your domain. – zombat Aug 11 at 22:16
Yeah, that's true. I was thinking too hard I guess and over-thought it to the point of failure. – Fred Clown Aug 24 at 18:50

Your Answer

Get an OpenID
or

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