Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

This may be obvious to some, but I've been wondering: why should I depend on Google's server to host jQuery for my site?

Is it only because it loads faster this way?

share|improve this question
1  
1  
No one mentions what Google's policy was on hotlinking to their JS files (given hotlinking is usually frowned upon), so heres the URL where Google mention this is OK and more about the libraries they host: code.google.com/apis/ajaxlibs/documentation/index.html – Loftx Feb 9 '10 at 14:14
possible duplicate of Should I link to Google API's cloud for JS libraries? – Arjan Nov 20 '10 at 11:11
Many users already have downloaded jQuery from Google or Microsoft when visiting another site. As a result, it will be loaded from cache when they visit your site, which leads to faster loading time – Jeson Park Apr 3 at 5:44

3 Answers

up vote 163 down vote accepted

This is because:

  1. It increases the parallelism available.
    (Most browsers will only download 3 or 4 files at a time from any given site.)

  2. It increases the chance that there will be a cache-hit.
    (As more sites follow this practice, more users already have the file ready.)

  3. It ensures that the payload will be as small as possible.
    (Google can pre-compress the file in a wide array of formats (like GZIP or DEFLATE). This makes the time-to-download very small, because it is super compressed and it isn't compressed on the fly.)

  4. It reduces the amount of bandwidth used by your server.
    (Google is basically offering free bandwidth.)

  5. It ensures that the user will get a geographically close response.
    (Google has servers all over the world, further decreasing the latency.)

  6. (Optional) They will automatically keep your scripts up to date.
    (If you like to "fly by the seat of your pants," you can always use the latest version of any script that they offer. These could fix security holes, but generally just break your stuff.)
share|improve this answer
3  
+1 Excellent answer. – Pekka 웃 Feb 1 '10 at 22:08
5  
I love how you keep coming up with more and more reasons. +1 for that alone. – Matchu Feb 1 '10 at 22:10
1  
I feel like #3 probably has more to do with gzip and the like, since jQuery already gives out a minified version. – Matchu Feb 1 '10 at 22:12
2  
God everyone was attacking me , i just sent my ideas , and was accepted , LOL – Ghazanfari Feb 1 '10 at 22:19
1  
@farshad: Not attacking you, attacking the accepted answer which wasn't as good as the next answer. That's the way community Q&A works. Try formatting your answer a bit more professionally next time, and limiting your criticism of the question to the useful, constructive kind. – Joel Potter Feb 1 '10 at 22:34
show 5 more comments

There are a couple scenarios when you might not want to use jQuery from Google's CDN:

  1. When you are building an intranet application where the webserver is hosted on the same network as the clients. If you use Google's CDN jQuery, you will be making a call to the internet rather than a webserver on the local network. This increases bandwidth for your organization, and is slower.

  2. When you are serving pages over SSL that require jQuery. You should serve the javascript over SSL as well as your page to avoid security problems and warnings.

Also, Microsoft hosts jQuery on their CDN. That is another choice comparable to using Google's hosted jQuery.

share|improve this answer
11  
Just an FYI that you can use Google's servers to serve up an SSL version of the hosted javascript libraries. ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js works. – Aaron Wagner Feb 1 '10 at 23:16
Good to know, Aaron. Thanks. – Lance Fisher Feb 1 '10 at 23:33
1  
+1 for mentioning Microsoft. Google gets way too much credit imo. – mmmshuddup Sep 21 '12 at 7:32
Also FYI: Scheme relative hyperlinks, like src="//ajax.googleapis.com/...", work. – John Gietzen Apr 7 at 0:17

The greatest benefit is from caching. The theory is that if a visitor visited a site that was loading their JavaScript libraries, say jQuery for example from the Google CDN, then when they visit your website, the library is already in that user’s browser cache and will not have to be downloaded again. This sounds great in theory.

The benefits being shared here and elsewhere are all theoretical. Just came across an in-depth analysis of using a CDN and if it provides the expected performance benefits. http://www.root777.com/appdev/does-using-google-libraries-api-cdn-give-you-performance-benefits

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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