Skip to content

Instantly share code, notes, and snippets.

@pazguille
Created October 18, 2012 14:47
Show Gist options
  • Save pazguille/3912324 to your computer and use it in GitHub Desktop.
Save pazguille/3912324 to your computer and use it in GitHub Desktop.
JavaScript CDN Fallback
<script src="http://code.jquery.com/jquery-1.7.2.js"></script>
<script>
if (jQuery === undefined) {
var script = document.createElement('script');
script.src = '/local/jquery.min.js';
document.getElementsByTagName('head')[0].appendChild(script);
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment