html - IE Conditional operator: OR ... if is greater than ie9 or not IE -


i want include history , ajaxify if browser ie9 or greater, or is not ie:

<!--[if gte ie 9]>     <script type="text/javascript" src="assets/js/plugins/history.js"></script>     <script type="text/javascript" src="assets/js/plugins/ajaxify.js"></script> <![endif]--> 

how can use or operator this:

<!--[if gte ie 9 | !ie ]> ??

thanks!

this worked:

    <!--[if gte ie 9 | !ie ]><!-->         <script type="text/javascript" src="assets/js/plugins/history.js"></script>         <script type="text/javascript" src="assets/js/plugins/ajaxify.js"></script>     <![endif]--> 

Comments

Popular posts from this blog

linux - xterm copying to CLIPBOARD using copy-selection causes automatic updating of CLIPBOARD upon mouse selection -

c++ - qgraphicsview horizontal scrolling always has a vertical delta -