I have a library that does not work in IE unfortunately, because IE does not support promises and other html5 features. I want to keep that library for Chrome & Firefox, but use a different one for IE. How can I separate the two like following:
<!--[if IE]>
<script type="text/javascript" src="/myielib.min.js"></script>
<![else]>
<script type="text/javascript" src="/mychromelib.min.js"></script>
<![endif]-->
Obviously, conditionally formatting only works on >IE9 browsers, but I wanted something similar to this.