Created
May 23, 2013 08:03
-
-
Save dwoodiwiss/5633393 to your computer and use it in GitHub Desktop.
Using jQuery 2.0.0 with a fallback to 1.9.1 for IE8 & below. Used on this blog post:
http://nukoagency.co.uk/2013/05/dealing-with-old-browsers/
This file contains 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 !IE]><!--> | |
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js"></script> | |
<!--<![endif]--> | |
<!--[if lte IE 8]> | |
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script> | |
<![endif]--> | |
<!--[if gt IE 8]> | |
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js"></script> | |
<![endif]--> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Good!