Skip to content

Instantly share code, notes, and snippets.

@stephencoe
Last active December 20, 2015 11:59
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 stephencoe/6127586 to your computer and use it in GitHub Desktop.
Save stephencoe/6127586 to your computer and use it in GitHub Desktop.
Jquery 2.0 with IE<10 fallback
<!DOCTYPE html>
<!--[if lt IE 7 ]> <html class="ie6"> <![endif]-->
<!--[if IE 7 ]> <html class="ie7"> <![endif]-->
<!--[if IE 8 ]> <html class="ie8"> <![endif]-->
<!--[if IE 9 ]> <html class="ie9"> <![endif]-->
<!--[if (gt IE 9)|!(IE)]><!--> <html class=""> <!--<![endif]-->
<head>
<!--[if IE]>
<script>window.jQuery = null</script>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="/public/js/jquery-1.10.2.min.js"><\/script>')</script>
<![endif]-->
<!--[if expression]><!-->
<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="/public/js/jquery-2.0.3.min.js"><\/script>')</script>r
<!--<![endif]-->
<!--[if lte IE 8]>
<script type="text/javascript" src="/public/js/selectivizr.js"></script>
<![endif]-->
<!DOCTYPE html>
<!--[if lt IE 7 ]> <html class="ie6"> <![endif]-->
<!--[if IE 7 ]> <html class="ie7"> <![endif]-->
<!--[if IE 8 ]> <html class="ie8"> <![endif]-->
<!--[if IE 9 ]> <html class="ie9"> <![endif]-->
<!--[if (gt IE 9)|!(IE)]><!--> <html class=""> <!--<![endif]-->
<head>
<!--[if IE]>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="/public/js/jquery-1.10.2.min.js"><\/script>')</script>
<![endif]-->
<!--[if expression]><!-->
<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="/public/js/jquery-2.0.3.min.js"><\/script>')</script>
<!--<![endif]-->
<!--[if lte IE 8]>
<script type="text/javascript" src="/public/js/selectivizr.js"></script>
<![endif]-->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment