I have included a reference to Google's JQuery library in my markup:

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js" type="text/javascript"></script>

Is it safe to do this? How do I know Google won't change the address, or remove it altogether? I really can't afford to have my app break without warning.

What do other people do?

link|improve this question

1  
If google did change or remove it half the internet would break. – Raynos Jun 17 '11 at 7:29
Aren't they likely to get rid of the old version 1.4.2 at some stage in the future? I want to put it in my code and forget about it, not keep updating it. – Urbycoz Jun 17 '11 at 7:41
1  
At some stage, but i'd expect maybe 20 years? – Raynos Jun 17 '11 at 7:47
feedback

5 Answers

up vote 13 down vote accepted

Have the best of both worlds. Use theirs for fast, possibly pre-cached, delivery and in case their server goes down (more likely than them moving it) fallback to your own:

<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>

Taken from: Best way to use Google's hosted jQuery, but fall back to my hosted library on Google fail

link|improve this answer
1  
Really good way to do it, probably the best. However, that said, I don't plan on changing my code because I just can't imagine Google's CDN going down xP – Connor Smith Jun 17 '11 at 7:36
1  
That's exactly what Paul Irish's HTML5 Boilerplate does. Also handy if, say, you're going to be working on something on your laptop while on a plane without internet access or somesuch (which happened to me a couple of weeks ago). – Scottie Jun 17 '11 at 8:55
feedback

Yes, it's completely safe. It's also hosted on Google's CDN making it load faster, in most cases, than loading from your own server.

link|improve this answer
Not to mention a lot of people probably have google CDN resources cached, making it possibly even faster. – kinakuta Jun 17 '11 at 7:29
What about countries where Google domain name is blocked? – Urbycoz Jun 17 '11 at 7:33
@Urbycoz: that's what the fallback in Mauvis Ledford's answer is for, providing a local copy of jQuery just in case the CDN version is unavailable for whatever reason. – Scottie Jun 17 '11 at 8:56
feedback

Absolutely, it is what you should do!

http://encosia.com/3-reasons-why-you-should-let-google-host-jquery-for-you/

link|improve this answer
feedback

Google offers it for free, Google's Servers are fast, and above all You save your bandwidth.

link|improve this answer
feedback

It is 100% safe to use Google's hosted jQuery file. In fact, it is actually faster because browsers can download multiple files at once from different servers. Also, if the user has visited a website that uses Google's jQuery before, the script will already be in the cache, causing the page to load faster.

Ad@m

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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