I would like to have two separated Javascript files. One for IE and another one for all other browsers. How would I do that?
<!--[if IE]>
<script type="text/javascript" src="js/ie.js"></script>
<![endif]-->
<!--[if ALL OTHER BROWSERS THAN IE]>
<script type="text/javascript" src="js/all.js"></script>
<![endif]-->
1 Answer