Last active
April 13, 2018 08:55
-
-
Save coliff/6012c1dcc5a7c86878b4ce333823527e to your computer and use it in GitHub Desktop.
Conditional statement to give IE 8 and lower jQuery 1.x and all other browsers jQuery 3.x
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 gte IE 9]><!--> | |
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script> | |
<!--<![endif]--> | |
<!--[if lt IE 9]> | |
<script src="https://code.jquery.com/jquery-1.12.4.min.js"></script> | |
<![endif]--> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment