Conditional Comments are a feature of Microsoft's Internet Explorer web browser. They allow a web page to check the browser version.

learn more… | top users | synonyms

2
votes
1answer
20 views

Is it a good idea to serve different jQuery versions based on conditional comments?

With jQuery 2.0 being released, I wonder if there are problems likely to occurr when serving different versions of jQuery for IE8 and lower and other browsers with the use of "conditional comments": ...
0
votes
1answer
31 views

IE Conditionals Causes .LESS error

I having an issue with LESS processing a file that has IE conditionals. For example I have a normal .less file and the last lines in the file are as follows. <!--[if IE ]> * .columncontainer ...
0
votes
0answers
27 views

Outlook for Mac (2011): Conditional Comments

Setup: I am trying my hand at an email with responsive design. Let me say up front, I am experienced enough that I expect there to be email clients that I can't control for. However, the one I am ...
0
votes
2answers
22 views

Conditional comments not working as expected

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]> ...
0
votes
1answer
41 views

clientScript package with conditional comment

Having searched around quite a bit to no avail I'm wondering if there is a way to assign JS and CSS files to a package with a conditional statement (i.e. <!--[if lte ie 7]>). I would want ...
0
votes
0answers
14 views

Is there a way to write conditional comments for IE9 compatibility mode?

I've been testing a website in IE and making small changes to the CSS using conditional comments. I thought compatibility view was supposed to be better but when I go and test in it I get more errors. ...
2
votes
2answers
56 views

Unit testing conditional comments

I'm using XMLUnit (org.custommonkey.xmlunit.Diff) to test two HTML strings: one is produced by templating engine, other is from a static file. It works fine, but I ran to following problem: There are ...
0
votes
0answers
47 views

o:conditionalComment not taken

I have an application in JSF. I have problem with my IE conditionalComments which is like this: <?xml version="1.0" encoding="UTF-8"?> <!--<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 ...
-6
votes
4answers
200 views

Detecting any and all versions of Internet Explorer

There used to be a nice way to tell if a web browser is IE or not, by using this technique in HTML: <!--[if IE]> Non-IE browsers ignore this <![endif]--> or <!--[if !IE]--> IE ...
2
votes
1answer
56 views

How is “<!— [if IE X]> something something <![endif] -->” applied?

In modern web pages you often see something like: <!--[if IE 7]> <html class="ie ie7" lang="en-US"> <![endif]--> <!--[if IE 8]> <html class="ie ie8" lang="en-US"> ...
1
vote
2answers
199 views

Redirect IE8 users to another page

I am implementing a website with Wordpress, but my website is not supported in Internet Explorer 8. Is there any code I can use so that any IE8 users will be redirected to another page?
0
votes
1answer
76 views

Conditional comment in XSL not working

I have added a conditional comment in XSL like <xsl:comment> <![CDATA[ [if IE]> <script type="text/javascript"> registerDisplay = ...
2
votes
3answers
1k views

ie10 stylesheet

I'm trying to link to IE10 with an external style sheet but its not working properly. whats happening is IE10 is using the same style sheet as the other browsers. i have attached different stylesheets ...
0
votes
1answer
40 views

Run Script on Browsers Different Than IE

I want to run a specific jQuery/JS code on any browser but IE. Currently I am using this, but it does not work in Chrome: <!--[if !IE]> <script type="text/javascript"> ...
0
votes
0answers
79 views

Outlook and Hotmail conditional comment

Is there a way to hide the content in Outlook by using a conditional comment, but the content still showing up in Hotmail? Let's say, If I use <!--[if !mso 9]><!--> Content ...
1
vote
1answer
93 views

Chrome and Firefox shows “<!--[if IE]-->” / IE ONLY code

Both Firefox and chrome insist to execute this code : <!--[if IE]> <p>Internet Explorer only code</p> <![endif]--> And also this one: <!--[if IE 7]> Special ...
5
votes
2answers
504 views

How to use Internet Explorer conditional comments in JSF?

This is my source code file in Eclipse: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html ...
0
votes
1answer
68 views

Testing website, blank page shows up

When I test web site in IE 5.5, 6.0, 7.0 and 8.0 a blank page loads. The site works fine in Firefox, Safari, Opera and Chrome. I think the problem has something to do with the conditional comments. ...
3
votes
3answers
89 views

IE Stylsheets/ Conditional comments Not working

I am trying to make a website look better in IE, so i decided to use conditional comments. So I used this conditional comment to link to the stylesheet. <!--[if IE]> <link rel="stylesheet" ...
0
votes
1answer
147 views

Conditional comment to detect Windows version?

I've recently discovered that you can use this to detect Windows versions: <!--[if WindowsEdition]>Blah<![endif]--> But what values does WindowsEdition use? Basically I'm trying to use ...
0
votes
0answers
170 views

IE Mobile conditional comment is read by ie8 and lower

I am developing a responsive site and do use media queries, which are not read by IE8 as well as the internet explorer on windows phone. Therefore I am using conditional comments for these. For IE8 ...
-2
votes
2answers
95 views

Conditional IE statement - run script

I have a lame problem: If I use something like: <!--[if IE]> Random text <![endif]--> and I open page in IE (9) I naturally see the text "Random text". Everything is ok. If I ...
0
votes
0answers
26 views

Inconveniences of using conditional comments for IE

I would like to know (from experienced front-end developers) what are the (performance) inconveniences or issues using conditional comments for IE (especially IE8), if any. For any other browser, the ...
1
vote
1answer
106 views

Is it possible to use IE conditional comments to redirect?

I've got a splash page which simply jams up in IE, and creating a workaround would require a tremendous amount of jQuery. Is there any way to use IE's conditional comments to skip the splash page, and ...
3
votes
1answer
810 views

Show content if <noscript> OR <!--[if lte IE 7]> conditional comment is met, without duplicating content?

I'm developing a Javascript-driven interactive tool that does not support IE6 or IE7. If someone turns up using old IE, or, using a browser with Javascript disabled, we give them some simple static ...
3
votes
2answers
998 views

MVC4 bundling/minification with IE conditional comments

I am trying to use MVC4's new "bundling and minification". For IE conditional comments, I'm still doing it the old way: <!--[if lt IE 9]><link href=.../><![endif]--> or <!--[if ...
0
votes
2answers
353 views

Conditional comment “gt ie 7” breaks chrome and firefox

I'm doing the old CSS conditional comments to block out a .css from being used when using IE 7 and below using: <!--[if gt IE 7]> <link rel="stylesheet" href="some-styles.css" /> ...
1
vote
1answer
110 views

Conditional statements not being picked up

I've read around about using conditional statements but never successfully got them to work! This is what I have: <!--[if !(IE)]><!--> <input type="text" value="" ...
2
votes
2answers
161 views

How can I embed a conditional comment for IE with innerHTML?

Ok so I want to conditionally add this line of code; <!--[if ! IE]> <embed src="logo.svg" type="image/svg+xml" /> <![endif]--> Using: document.getElementById("logo") ...
0
votes
2answers
161 views

Safari 6 not calculating <!--[if !IE]> conditionals

Am I doing something incorrect here? I have !ie conditionals, however it seems that Safari 6 (not below) is not calculating these anymore. Has anyone experienced this? my block: <!--[if ...
1
vote
1answer
135 views

How to ban Internet Explorer?

I try to ban the Internet Explorer by a meta tag in my template. template.xhtml: <?xml version='1.0' encoding='UTF-8' ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" ...
0
votes
1answer
126 views

LABjs Loading IE Conditions

I'm having an issue with LABjs. I load all my scripts, but when I use it in IE it completely breaks down. $LAB ...
2
votes
2answers
196 views

Using Conditional Comments the right way

I want to know, when using conditional comments, what is the correct way (pay attention to the closing div tags) This way, with one closing div for both conditional divs <!--[if IE]> <div ...
0
votes
5answers
493 views

IE9 Is Using Conditional IE7 Stylesheet

I have the following extra stylesheets to deal with some naughty browser behaviour in older versions on Internet Explorer: <!--[if IE 8]> <link rel="stylesheet" ...
0
votes
1answer
95 views

Typographic tweaks for IE using conditional CSS… or something else?

I'm trying to create a design blog and gallery for myself and that's why I'm being a bit experimental with CSS3. I achieved the result I wanted for other browsers and now IE is giving me a headache. ...
3
votes
4answers
265 views

Multiple conditional statements in <head> of document

I've got a script I want to run in every browser except versions of IE below 9, obviously, this conditional statements works for IE: <!--[if gt IE 8]> JavaScript stuff here ...
0
votes
1answer
576 views

Is Chrome Frame conditional comments possible?

When using... <!--[if lte IE 8]> <html class="ie8-7-6"> <![endif]--> .ie8-7-6 .loginForm {display:none;} /* The login form is hidden. */ and .ie8-7-6 .yourbrowserisold ...
5
votes
3answers
382 views

IE7-only stylesheet for XSL document

How do I add an IE7-and-lower-only stylesheet to an XSL page? I tried adding it into the template for header information like so: <xsl:template name="header"> <!--[if lte IE 7]> <link ...
1
vote
3answers
333 views

.NET postback makes other browsers load IE conditional comments

Here is my standard conditional comments to give IE hacks to IE8 and below only. It works on initial load. <!--[if lt IE 9]> <link href="Styles/IE.css" rel="stylesheet" type="text/css" ...
1
vote
3answers
1k views

JSF 2 how to set html style depending on browser version

What i want to do in my JSF 2 application is to set proper html style depending on browser version, here is sample code: <!--[if lt IE 7]> <html class="lt-ie9 lt-ie8 lt-ie7" lang="en"> ...
0
votes
1answer
514 views

If IE not working properly

I have 1 div and i want to apply a gradient and a background image to it (yes, on the same element). I know that it's only possible if the browser you`re targeting is NOT IE. With that in mind, i ...
1
vote
4answers
4k views

Using IE conditional comments inside a stylesheet

I know that you can use an IE conditional comment inside HTML: <!--[if IE]> <link href="ieOnlyStylesheet.css" /> <![endif]--> But what if I want to target only IE in a ...
1
vote
1answer
157 views

Conditional CSS depending on OS

I know there is conditional CSS by browser but I'm interested to see if there is conditional CSS by OS. Here is my motivation: I developed a website using custom fonts via CSS3. The font looks ...
0
votes
2answers
426 views

ie9 allow blocked content conditional comments

I'm having trouble loading gradients in IE9. I generated it using colorzilla which includes an IE conditional comment for deactivating filters, so that IE9's svg component is used instead. When I ...
2
votes
1answer
140 views

Tweak IE Conditional Comment with Nokogiri without converting entities

I have an XHTML file with an HTML5 Shiv in the head: <!--[if lt IE 9]> <script src='../common/html5.js' type='text/javascript'></script> <![endif]--> Using Nokogiri I need ...
0
votes
3answers
930 views

Add CSS classes targeting IE browsers: JavaScript or Conditional Comments?

My goal is to remove IE conditional comments from my documents' <head>, but I recognize that I still need to use ie6,7,8-specific stylesheets (correct me if I'm wrong). For example, these IE ...
0
votes
0answers
80 views

Internet Explorer 7 Conditional comment works locally, but not on server

I'm pulling my hair out with this one. Using a conditional comment to target IE 7 (yea yea I know). It works fine locally, but not when it is live on the server. Working locally, it works fine with an ...
1
vote
1answer
530 views

Conditional compilation error/warning when using razor syntax in javascript (cc_on does not exist in this context)

I am using Razor syntax in an ASP.NET MVC3 View inside a JavaScript code but I get a "conditional compilation is off" warning. I searched for it and found out that using /*@cc_on @*/ before the code ...
2
votes
4answers
153 views

About HTML conditional comments

I'm trying to display a span A if the browser is IE 6 or lower or a span B if the browser is greater than IE 6 or is not IE. <!--[if lte IE 6]><!--><span>You're using IE 6 or ...
2
votes
1answer
341 views

Conditional comments only work when file extension is html

The issue I am encountering is exactly what the title of this question says, conditional comments on my page only work if the extension is html. If this is saved as an xhtml file, the conditional ...

1 2 3