Created
August 17, 2014 08:47
-
-
Save craigmdennis/3cfdac4569c721cefcf7 to your computer and use it in GitHub Desktop.
Load jQuery without using conditional comments.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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