For those that have been hiding under a rock, we don't always need to download and host files like jQuery, Bootstrap, etc., we can directly link to them from our HTML to CDN's that host them instead of downloading them locally.
The upside to using the CDN:
1) browsers have limits to how many files it can load concurrently from a single domain which is why the CDN frees up more sockets for your domain and also the odds are the common CDN sources are already cached meaning your client ISN'T downloading the content from scratch very often. Other sites easily resolve this problem by making subdomains for downloading page resources such as www1.example.com, www2.example.com, etc. and let the load balancers sort it out thus speeding up the page display.
2) It's an easy way to make sure you always have the most current and updated code without downloading it to all your sites. Just as a security/update method putting all those files on a common subdomain such as "resources.example.com" wouldn't be such a bad idea instead of installing them per site.
3) Makes using developer prototyping tools like jsFiddle easy as heck, but then again we all knew that. I'm all for using 3rd party CDN to fiddle around.
Here's a few CDN's to try:
If you're not aware it exists:
http://www.jsdelivr.com/
Then there's this thing...
http://code.createjs.com/ from http://createjs.com
Of course the usual suspects we already know...
http://cdnjs.com/ from https://github.com/cdnjs/cdnjs
http://www.asp.net/ajaxlibrary/cdn.ashx
https://developers.google.com/speed/libraries/devguide?csw=1
Also:
http://www.bootstrapcdn.com/
Enjoy.