Some people recommend using the following technique ( fallback ) to load Javascript libraries locally if the CDN is out of the loop:
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="jquery.js"><\/script>')</script>
My question is: If the CDN is really off the air, will not the browser take several seconds to consider timeout and load the local version? This would make the navigation slow, because with every page change it would try again.