From this previous question I found that the code below can determine if a user has IE, and then run js-code specific to them. But when I used the code on my site, the effect was the opposite. On other browsers the code is fired, on IE not. What am I doing wrong?
<![if !IE]>
<script type="text/javascript">
$(document).ready(function() {
$(".box.2").fadeOut(1500);
});
</script>
<![endif]>