Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How do I target only Internet Explorer 10 for certain situations like Internet Explorer-specific CSS or Internet Explorer-specific JavaScript code?

I tried this, but it doesn't work:

<!--[if IE 10]>    <html class="no-js ie10" lang="en"> <![endif]-->
<!--[if !IE]><!--> <html lang="en" class="no-js"> <!--<![endif]-->

Internet Explorer 10 ignores the conditional comments and uses the <html lang="en" class="no-js"> instead of <html class="no-js ie10" lang="en">.

share|improve this question
1  
I think a better question would be : How do I get this CSS to look the same on both browsers ? – Robotsushi Mar 28 '12 at 2:51
8  
IE10 PP4 Still supports the @cc_on statement. 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
5  
@RobW - Your example code will be wrong once ie11 is out. Improved version: <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:21
1  
Example of the above code snippet: jsbin.com/upofoq/2 – robocat Dec 6 '12 at 23:29
3  
A more generic solution is: if(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
show 4 more comments

11 Answers

up vote 18 down vote accepted

Perhaps you can try some jQuery like this:

if ($.browser.msie && $.browser.version == 10) {
  $("html").addClass("ie10");
}

Worked out quite fine for me. But surely no replacement for conditional comments!

share|improve this answer
Thanks. Short and simple. – trusktr Dec 20 '12 at 11:31
3  
And thanks to jQuery. – trusktr Dec 30 '12 at 6:42
1  
I am not sure about you guys but I need to use == '10.0' for it to work – lulalala Jan 8 at 10:06
28  
Warning: jQuery.browser is no longer available in the current version of jQuery (1.9) without a plugin. blog.jquery.com/2013/01/15/… – dave1010 Jan 18 at 11:01
1  
I would recommend: if (jQuery.browser.msie && jQuery.browser.version < 10) { // do what you will here } Note the verion < 10 to detect older versions of IE. IE10 and above works fine with all my CSS3, HTML5, jquery, etc. – Dan Mantyla Mar 12 at 20:45
show 2 more comments

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?

share|improve this answer
7  
Chhhh, yeah, IE10 still lags far behind webkit and gecko. I have some CSS looking all nice in webkit and hideous in IE10. If I can't find a way to selectively apply the styles, then I'll have to abandon such styles. :( – trusktr Mar 28 '12 at 2:34
15  
@BoltClock: can't stop laughing when thinking at IE as a browser "designed such that we shouldn't have to set aside special code for it". – Marco Demaio Sep 4 '12 at 14:49
2  
Its worth pointing out that conditional comments were removed in IE10 as it now has a HTML5 parser. Conditional comments are not valid according to the HTML5 parsing algorithm. See legacy features section of blogs.msdn.com/b/ie/archive/2011/07/06/… – dstorey Dec 19 '12 at 1:07
4  
@KlevisMiho Not true, Chrome and Firefox support features that IE doesn't have, even if coded well. If you mean "use only common features" then that's not quite the same as "code well". – trusktr Jan 3 at 21:12
3  
@Dan Mantyla: In that case, <!--[if !IE]><!-->stuff you don't want IE9 and below to see<!--<![endif]--> – BoltClock Mar 12 at 20:43
show 9 more comments

I found a solution on this site where someone had a valuable comment:

The solution is:

if (Function('/*@cc_on return document.documentMode===10@*/')()){
    document.documentElement.className+=' ie10';
}

It

  • doesn’t need conditional comments;
  • works even if comment stripping compression/processing;
  • no ie10 class added in Internet Explorer 11;
  • more likely to work as intended with Internet Explorer 11 running in Internet Explorer 10 compatibility mode;
  • doesn’t need standalone script tag (can just be added to other JavaScript code in the head).
  • doesn't need jQuery to test
share|improve this answer
Cool, this is the way I'd do it without jQuery. – trusktr Dec 20 '12 at 12:35
2  
@dave1010 User agents can easily be spoofed. Conditional comments are only supported by the JScript engine, which is only available in IE4+ (including 10). – Rob W Feb 6 at 18:08
2  
@dave1010 Writing a working parser which does what you're describing is difficult and extremely unlikely. Anyone who deliberately creates and installs such an extension is most likely intending to "act like" IE (perhaps for automated testing purposes on non-Windows environments?). 100% trust is never guaranteed in browsers, but you can get sufficiently close. Conditional comments are a highly reliable way to detect the JScript engine, which happens to be used by IE. – Rob W Feb 8 at 14:20
1  
only disadvantage I can see is that it requires js, which conditionals didnt – James Westgate Mar 21 at 9:23
1  
This should be the top answer, and the JS requirement should be moot for IE10 users - if JS is disabled it will probably just be the NoScript addon. I think we need more public education about the sheer stupidity of NoScript (as opposed to sane addons like AdBlock or Ghostery). – tomeoftom Apr 17 at 4:27
show 3 more comments

I wouldn't use JavaScript since all of them are detecting the browser via navigator.userAgent which can be spoofed.

This one will target Internet Explorer 9 and Internet Explorer 10:

@media screen and (min-width:0\0) { 
    /* Enter CSS here */
}

Moving Internet Explorer specific CSS into @media blocks

share|improve this answer
3  
Nice to see another method. I didn't know there were so many at first. – trusktr Feb 17 at 8:57
2  
Really!! OMG!! Thanks :) – enam Mar 27 at 17:16
That's real nice. But how concerned should we be when testing various document modes against browser modes in IE? In what situations can we expect online users to use a different document mode from their current browser mode? – blachawk Apr 5 at 14:19
people don't usually change the document mode. They can, but I haven't come across any site that required the user to change the document mode. If you are using the correct DOCTYPE this isn't an issue at all. – Roni Apr 5 at 16:18

Both solutions posted here (with slight modifications) work:

<!--[if !IE]><!--><script>if(/*@cc_on!@*/false){document.documentElement.className='ie10';}</script><!--<![endif]-->

or

<script>if(Function('/*@cc_on return 10===document.documentMode@*/')()){document.documentElement.className='ie10';}</script>

You include either of the above lines inside of head tag of your html page before your css link. And then in css file you specify your styles having "ie10" class as a parent:

.ie10 .myclass1 { }

And voilà! - other browsers stay intact. And you don't need jQuery. You can see the example how I implemented it here: http://kardash.net.

share|improve this answer

If you must do this, you can check the user agent string in JavaScript:

var isIE10 = !!navigator.userAgent.match(/MSIE 10/);

As other people have mentioned, I'd always recommend feature detection instead.

share|improve this answer

I've written a small, vanilla JavaScript plugin called Layout Engine, which allows you to feature detect IE 10 (and every other browser), in a simple way that cannot be faked, unlike user agent sniffing.

It adds the rendering engine name as a class on the html tag and returns a JavaScript object containing the vendor and version (where appropriate)

Check out my blog post: http://mattstow.com/layout-engine.html and get the code on GitHub: https://github.com/stowball/Layout-Engine

share|improve this answer
That is very nice. – trusktr Feb 2 at 7:19

I use this script - it's antiquated, but effective in targeting a separate Internet Explorer 10 style sheet or JavaScript file that is included only if the browser is Internet Explorer 10, the same way you would with conditional comments. No jQuery or other plugin is required.

<script>
    /*@cc_on
      @if (@_jscript_version == 10)
          document.write(' <link type= "text/css" rel="stylesheet" href="your-ie10-styles.css" />');
      @end
    @*/
</script >
share|improve this answer
1  
Cool. Could you add a little info on what those @statements are? – trusktr Jan 29 at 3:19

You can use PHP to add a stylesheet for IE 10

Like:

if (stripos($_SERVER['HTTP_USER_AGENT'], 'MSIE 10')) {
    <link rel="stylesheet" type="text/css" href="../ie10.css" />
}
share|improve this answer
Yet even another way to do it. Thanks! – trusktr Mar 22 at 23:10
1  
It doesn't make sense to upper the string as stripos is not case sensitive ;) – mgutt May 6 at 21:51

If you want to target IE 10 with Vanilla JavaScript, you might want to try CSS property detection:

if (document.body.style.msTouchAction != undefined) {
  document.body.className = 'ie10';
}

CSS properties

Instead of msTouchAction you can also use one of these CSS properties, because they are currently only available in IE 10. But this might change in the future.

  • msTouchAction
  • msWrapFlow
  • msWrapMargin
  • msWrapThrough
  • msScrollLimit
  • msScrollLimitXMin
  • msScrollLimitYMin
  • msScrollLimitXMax
  • msScrollLimitYMax
  • msFlexbox
  • msFlex
  • msFlexOrder

Test page

I've put together a test page with all properties on CodePen.

share|improve this answer
Nice! This is great to know. Thanks! – trusktr Feb 19 at 6:05

You could use feature detection to see if browser is IE10 or greater like so:

var isIE = false;
if (window.navigator.msPointerEnabled) {
    isIE = true;
}

Only true if > IE9

share|improve this answer
Nice to see another solution. :D – trusktr Apr 18 at 6:58

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.