Skip to content

Instantly share code, notes, and snippets.

@bmadigan
Created February 20, 2014 16:47
Show Gist options
  • Save bmadigan/9118138 to your computer and use it in GitHub Desktop.
Save bmadigan/9118138 to your computer and use it in GitHub Desktop.
JQuery from CDN or Local copy if not define
// First try loading jQuery from Google's CDN
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
// Fall back to a local copy of jQuery if the CDN fails
<script>
window.jQuery || document.write('<script src="http://mysite.com/jquery.min.js"><\/script>'))
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment