Internet Explorer 10 does not attempt to read conditional comments anymore. This means it will treat conditional comments just like any other browser would: as regular HTML comments, meant to be ignored entirely.
Note, however, that conditional compilation in JScript is still supported, as shown in the comments as well as the more recent answers. It's not going away in the final release either, unlike jQuery.browser.
If you really must target IE10, either use conditional compilation, or — better yet — use a feature detection library such as Modernizr instead of browser detection. Pretty cumbersome, but remember that IE10, as a modern browser that's highly conformant to today's Web standards, is designed such that you shouldn't have to set aside special code for it, i.e. it's supposed to resemble other browsers in terms of behavior and rendering.1
1 And I may be biased when I say this, but it sure as hell does. If your code works in other browsers but not IE10, the odds that it's an issue with your own code rather than IE10 are far better than, say, 3 years ago, with previous versions of IE.
Of course, while Microsoft has been doing a fantastic job with standards lately, not everyone is perfect, and we all have some old habits and quirks which we know will never quite go away... but I'm more than willing to give Microsoft the benefit of the doubt here. Again, I may be biased, but let's be real: who's to say you're not?
@cc_onstatement. So, to detect whether IE10 is supported or not, you can use the following code:<!--[if !IE]><!--><script>if(/*@cc_on!@*/false){document.documentElement.className+=' ie10';}</script><!--<![endif]-->. (I posted this as a comment, since IE is still in development, so it's not known whether the final release supports this feature as well) – Rob W May 13 '12 at 11:14<script>if(Function('/*@cc_on return document.documentMode===10@*/')()){document.documentElement.className+=' ie10';}</script>Improvements: doesn't need conditional comments; works even if comment stripping compression/processing; no class added for ie11; will work with ie11 running in ie10 compatibility mode; doesn't need standalone script tag (can just be added to other javascript in head). – robocat Dec 6 '12 at 23:21if(document.documentMode) document.documentElement.className+=' ie'+document.documentMode+'mode';- which solves 90% of issues (sometimes compatibility modes fail, in which case you need another level of fix on top of that). – robocat Dec 6 '12 at 23:40