html - Target everything but IE 9 -
html - Target everything but IE 9 -
is there way prevent ie 9 loading stylesheet or script?
i found way prevent ie versions doing not version:
<!--[if !ie]><!-->     <link rel="stylesheet" href="not-ie.css" />     <script src="not-ie.js"></script> <!--<![endif]-->       
sure, specify version:
<!--[if !(ie 9)]><!-->     <link rel="stylesheet" href="not-ie-9.css" />     <script src="not-ie-9.js"></script> <!--<![endif]-->    note have result in ie10 , later loading resources other browsers, newer versions not process conditional comments.
 html internet-explorer internet-explorer-9 conditional-comments 
 
Comments
Post a Comment