Skip to content

Instantly share code, notes, and snippets.

@benjaminfisher
Last active April 13, 2018 01:27
Show Gist options
  • Select an option

  • Save benjaminfisher/2597504 to your computer and use it in GitHub Desktop.

Select an option

Save benjaminfisher/2597504 to your computer and use it in GitHub Desktop.
Bullet proof jQuery CDN loading using head.js
<script>
head.js('http://code.jquery.com/jquery-1.9.1.min.js', function(){
if(typeof jQuery === 'undefined'){
head.js('js/lib/jquery/jquery-1.9.1.min.js');
};
})
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment