Skip to content

Instantly share code, notes, and snippets.

@craigmdennis
Created August 17, 2014 08:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save craigmdennis/3cfdac4569c721cefcf7 to your computer and use it in GitHub Desktop.
Save craigmdennis/3cfdac4569c721cefcf7 to your computer and use it in GitHub Desktop.
Load jQuery without using conditional comments.
if('querySelector' in document
&& 'localStorage' in window
&& 'addEventListener' in window) {
// Add jQuery 2.0+
document.write('<script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"><\/script>')
} else {
// Add jQuery 1.9.0+
document.write('<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"><\/script>')
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment