Search code examples
javascriptconditional-comments

How to serve a JS file to every browser but IE


I dont know why this isn't working. I'm trying to serve a file to good browsers, namely everyone but IE.

<!--[if !IE]>
<script type="text/javascript" src="JS/script.js"></script>
<![endif]-->

but it doesn't get served to any...any idea?


Solution

  • <!--[if !IE]> -->
    
    <!-- <![endif]-->
    

    Missing trailing -->