As already mentioned, local standby is always a good idea, but you should also set IE appropriately for versions other than IE. Something as simple as this should do the trick:
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script> <script> if (!window.jQuery) { document.write('<script src="/path/to/your/jquery"><\/script>'); } </script>
The first part is conditional if for jQuery created with workarounds for older IE, with a faster and more efficient version of jQuery 2.0. This uses the Google CDN as it has versions of http and https , while code.jquery.com only has http . If https not a concern, CDN code.jquery.com usually faster.
The second part checks if window.jQuery created, and if not, use the local version.
The advantage of using the CDN version and the local version is simply speed. Not only is their server bandwidth much higher (MUCH) more than yours, most browsers have previously used this version and stored it in the cache, so the browser does not need to restart it.
source share