Skip to content

Instantly share code, notes, and snippets.

@interfeis
Created July 2, 2012 16:33
Show Gist options
  • Save interfeis/3034127 to your computer and use it in GitHub Desktop.
Save interfeis/3034127 to your computer and use it in GitHub Desktop.
Fallback jQuery load
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script type="text/javascript">
if (typeof jQuery == 'undefined') {
document.write(unescape("%3Cscript src='/js/jquery-1.7.2.min.js' type='text/javascript'%3E%3C/script%3E"));
}
</script>
<!--
Other CDNs:
http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.7.2.min.js
http://code.jquery.com/jquery-1.7.1.min.js
-->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment