Skip to content

Instantly share code, notes, and snippets.

@DarkSector
Created April 18, 2012 16:54
Show Gist options
  • Save DarkSector/2414986 to your computer and use it in GitHub Desktop.
Save DarkSector/2414986 to your computer and use it in GitHub Desktop.
Fallback for the jQuery CDN import
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script type="text/javascript">
if (typeof jQuery == 'undefined') {
document.write(unescape("%3Cscript src='/js/jquery-1.7.1.min.js' type='text/javascript'%3E%3C/script%3E"));
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment