vote up 5 vote down star
1

Does it actually matter which CDN you use to link to your jquery file or any javascript file for that matter. Is one potentially faster than the other? What other factors could play a role in which cdn you decide to use? I know that Microsoft, Yahoo, and Google all have CDN's now.

flag

67% accept rate

5 Answers

vote up -2 vote down check

I'd use google for the time being, they're a bit more established and have a better fail-over system. It's also less likely that google's network is blocked by a company firewall compared to microsoft's.

That being said, if you're using the built in script manager and moving to .Net 4.0 soon, they have a built in method of referencing the Microsoft CDN. Scott Guthrie outlines how it works currently for the Microsoft AJAX. You can include jQuery via the URL he provides now, but you can bet there will be some sort of built in functionality including jQuery later to further promote their CDN over google's. If you're in that position, starting now with Microsoft's CDN may be a better path to take.

link|flag
7  
Less likely to be blocked? I'd love to know how you came up with that idea. The MS network isn't MS's anyway, it's akamai's who have been doing load balanced servers for a lot longer than google has, which makes a nonsense of the "better fall-over system" as well. Really, if you're going to make claims like this some evidence would be nice. – blowdart Oct 11 at 11:02
1  
Some companies, and I've worked for a few, block *.microsoft.com outright as part of their blocking of windows update. Is this correct? No, does it happen? Yes. Example: ajax.microsoft.com/...it falls under the *.microsoft.com block and not under the www exception, it's blocked when a company chooses to block anything but www.microsoft.com. I didn't say it's very likely, I said it's more likely, as I've never seen google blocked but have seen the reverse. – Nick Craver Oct 11 at 12:13
1  
And I've seen google blocked to stop gmail at government sites. But as it's so rare, I would hardly attempt to use it as a justification in this case. – blowdart Oct 11 at 13:08
Rather ignorant methods of blocking windows update aren't so rare, especially at smaller companies who can't/won't afford the expertise to do it correctly (even if it is trivial)...which is the reason for noting it. – Nick Craver Oct 11 at 15:34
vote up 5 vote down

It probably doesn't matter, but you could validate this with some A/B testing. Send half of your traffic to one CDN, and half to the other, and set up some profiling to measure the response. I would think it more important to be able to switch easily in case one or the other had some serious unavailability issues.

link|flag
vote up 2 vote down

You should absolutely use the Google CDN for jQuery (and this is coming from a Microsoft-centric developer).

It's simple statistics. Those who would consider using the MS CDN for jQuery will always be a minority. There are too many non-MS developers using jQuery who will use Google's and wouldn't consider using Microsoft's. Since one of the big wins with a public CDN is improved caching, splitting usage among multiple CDNs decreases the potential for that benefit.

link|flag
vote up 1 vote down

I think it depends on where is your targeted audience. You can use alertra.com to check both CDN speed from many locations around the world.

link|flag
vote up -1 vote down

I would use both!

As the Google Jquery hosting has been around a lot longer, the chances are much higher that people will already have it cached compared to the Microsoft one, so I would have it first.

Personally, I would use something like this -

if (typeof jQuery == 'undefined') {  
    // jQuery is not loaded  

  document.write("<scr" + "ipt type=\"text/javascript\" src=\"http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js\"></scr" + "ipt>");
        }
} else {
    // jQuery is loaded
}

(Not sure this 100% works, but I was just going to write the idea and not example - This references the Google hosted Jquery and not the Microsoft one as I couldn't find the link)

link|flag
jQuery will never be defined unless you bring it into your page. Caching the .js file doe snot make it available to all the browser pages by default! – Falkayn Nov 25 at 0:29
This works :S Re read the script - if it isn't defined, it writes this and loads? – Wil Nov 25 at 1:04

Your Answer

Get an OpenID
or

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