Skip to content

Instantly share code, notes, and snippets.

@coliff
Last active April 13, 2018 08:55
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save coliff/6012c1dcc5a7c86878b4ce333823527e to your computer and use it in GitHub Desktop.
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
<!--[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