I want to only include history and ajaxify if the browser is 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 I use the OR operator to say 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]-->
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With