vote up 0 vote down star

I saw two url's for jquery today

http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js?ver=1.3.2

and

http://jqueryjs.googlecode.com/files/jquery-1.3.2.min.js

Which one should i use for my production app?

Which url is used by you in your production apps?

flag

58% accept rate

6 Answers

vote up 0 vote down check

The first link is the jQuery served off Google's CDN... its what you need to use, and what gives you the biggest chance of the file already being present on the user's system. Its what everyone uses.

The second link is to download the file from the jQuery project repository. This file can (and will) be removed whenever the project owners release a new version. So you wouldn't want to use it on production :D

link|flag
vote up 0 vote down

The first one is a Content Delivery Network. By using it, your application has high speed, globaly available access to the Javascript library. Although sometimes the library that is putted here is updated late. If that is not an issue for you I would recommend the first one.

link|flag
vote up 2 vote down

The first one is correct. It's the link that will get you a download from googles "as close as possible" content delivery network.

link|flag
vote up 0 vote down

I wouldn't use either for production. I would download it locally and not be dependent on a resource I can't control.

link|flag
2  
While it might be a very good point to not depend on google servers, it also helps knowing that the jquery might already be cached on the client browser because it's already been fetched by google on another site, rather that having it downloaded locally for each website. – Julien Lebosquain Oct 8 at 4:50
Google is more reliable than your ISP. – vava Oct 8 at 4:51
1  
Also, Google has servers around the world, which means pages will load faster for your users. – qpingu Oct 8 at 4:53
That is a bold statement. I'd rather know where my file is coming from, the file isn't big, so performance isn't an issue. Also, I want to know that the file will not be altered. – rick schott Oct 8 at 4:54
1  
For you down voters, think outside of your own world(like maybe multi-million dollar enterprise SAAS applications, ERPs and the like). – rick schott Oct 8 at 15:52
vote up 0 vote down

Considering the second one is a download link ( which could still work ), I would use the first one because jQuery.com uses it :p

link|flag
1  
jquery.com uses code.jquery.com/jquery-latest.js and not the first one – Satya Oct 8 at 4:50
I must be blind. Can you point out where? blog.jquery.com/2009/08/… In the <head> of jquery.com I still see the reference to google apis.. – meder Oct 8 at 5:42
vote up 2 vote down

http://code.google.com/apis/ajaxlibs/documentation/

Google recommends you use the google.load() function, but http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js also works.

link|flag

Your Answer

Get an OpenID
or

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