I'm developing a site and i've seen that come contents aren't displaying correctly on IE, so i want to replace them with other IE-compatible contents.
This is what i'm using:
<!--[if !IE]> -->
<div id="container">
This is not IE, you are seeing the normal content
</div>
<!-- <![endif]-->
<!--[if IE]>
<div id="container">
This is IE, you are seeing IE-compatible content
</div>
<![endif]-->
The problem is that with IE version < 10, or even version 10 with compatibility mode ON i see
This is IE, you are seeing IE-compatible content
But with IE 10 with compatibility mode OFF i see
This is not IE, you are seeing the normal content
Why?
For those who wants to try it: JSFiddle