Use Microsoft CDN for JQuery or Google CDN with fallback
When we develop modern websites it will become more frequent that we use some kind of javascript library. And as it is we should always use a CDN from Microsoft or Google when we use these libraries.
Here is a link, http://encosia.com/2008/12/10/3-reasons-why-you-should-let-google-host-jquery-for-you/, on why we should use it but in my case I thought I should share a fallback as well that are not that commonly used in projects.
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script>
<script>window.jQuery||document.write('<script src="js/libs/jquery-1.5.1.min.js">\x3C/script>');</script>
These are the links to Microsoft CDN and Google CDN:
http://code.google.com/intl/sv-SE/apis/loader/
http://www.asp.net/ajaxlibrary/cdn.ashx
Comments