Tagged Questions
The conditional-comments tag has no wiki summary.
16
votes
2answers
5k views
Will IE9 support conditional comments?
I thought I remembered reading somewhere that IE9 would not be supporting them, but now after searching I can't find any indication that this is true.
Is anyone aware of a definitive statement, ...
6
votes
3answers
604 views
How to write conditional comment for non IE browsers?
I don't want to use a couple of javascript plugins for IE 6/7.
But I want to use them for all other browsers.
How can I do it?
Is there any way I can do it?
6
votes
2answers
1k views
Creating conditional comments with XSLT?
I want to create conditional comments in XSLT.
But when I use this:
<!-- [If IE7] [endif] -->
in an <xsl:comment>, XSLT removes it from the output when it is rendered.
Is there any ...
5
votes
2answers
100 views
why are conditional comments implemented in IE? [closed]
less of how & more of a why question here...I tried searching around some & couldn't quite find the answer I was looking for.
I'm curious why conditional comments exist within IE? did ...
5
votes
4answers
408 views
CSS conditional comments for other Browsers except IE?
So far I know, the conditional comments are only supported for different Versions of IE.
Likeways, can we provide conditional comments for other browsers too.
If Yes, How? If no, what could be the ...
5
votes
2answers
2k views
/*@cc_on and IE6 detection
When researching JavaScript conditional comments for IE, I stumbled upon @cc_on. This seems to work. However, the wikipedia entry on conditional comments provides the following code for more robust ...
4
votes
3answers
235 views
IE condition CSS include
Hy there...
I have a problem with Internet Explorer conditional comments...
I use this condition
<!--[if lte IE8]>
<link rel="stylesheet" type="text/css" ...
3
votes
3answers
139 views
Conditional Comments within CSS
I am currently developing a theme for a homepage but ran into a few problems. For whatever reason I have no access to editing the html code itself, and I need to write custom .css for IE (specifically ...
3
votes
3answers
143 views
Is there a way to put php inside of a IE conditional comments
I have a php section that loads jquery through wordpress from google's api. I dont want to load jquery on IE browsers. Long story short, it doesn't work for whatever reason (you can read through my ...
3
votes
4answers
158 views
When would <!--[if !IE]> be used?
I was pondering this question last night while debugging some things in IE7, when I typed in <!--[if IE7]>... it occured to me that I've seen <!--[if !IE]>.
Now what get me is that as far ...
3
votes
4answers
265 views
Is there any way to do “if IE” inside of a CSS file?
I know you can put conditional statements to load different CSS files if you are in Internet Explorer, but can you do this inside of a CSS file?
I have a situation where I want the right margin to ...
3
votes
3answers
909 views
Why isn't my IE6 Conditional stylesheet not working?
This is driving me nuts. I'm trying to use a conditional IE6 stylesheet. I posted this test page here. Here is the code I placed in my head tags:
<!--[if IE 6]>
<link rel="stylesheet" ...
3
votes
1answer
324 views
Do IE Conditional Comments slow down page load?
I've been having the "CSS hacks" vs "Conditional Comments" argument enough times lately that I thought I'd throw this question out to the Stack Overflow community.
<!--[if IE]>
<link ...
3
votes
5answers
722 views
Conditional Comments and Valid XHTML
Given the code (which looks like it should be valid):
<!--[if lt IE 7]> <style type="text/css" media="screen">
<!--
div.stuff { background-image: none; }
...
2
votes
2answers
72 views
how can [if IE 6] can be taken by IE7?
I am adding an aditional stylesheet for IE6
<!--[if IE 6]>
<link href="../../nCss/comunHome_ie6.css" rel="stylesheet" type="text/css" />
<![endif]-->
but is affecting to ...
2
votes
4answers
333 views
How not to load a script in IE?
It's possible to load a script only in IE with conditional comments
<!--[if lte IE 7]>
<script type="text/javascript" src="somescript.js"></script>
<![endif]-->
but what ...
2
votes
2answers
164 views
Why do these Conditional Comments tell me IE8 is IE7?
Why using this HTML page on Internet Explorer 8:
<p>
<!--[if IE]> According to the conditional comment this is Internet Explorer<br /><! [endif]-->
<!--[if IE 5]> ...
2
votes
4answers
197 views
Can we use like this <body class=“all” <!--[if IE 7]>class=“ie”<![endif]--> >
Can we use like this <body class="all" <!--[if IE 7]>class="ie"<![endif]--> >?
I want to keep all CSS in one file.
2
votes
4answers
2k views
Conditional Comments Firefox
Are there specific Conditional Comments available for older versions of Firefox? (eg 3.0)
1
vote
1answer
24 views
What would make Internet Explorer NOT process conditional comments properly?
I'm writing JSP pages and using Tomcat, and it needs to work for IE 7 in addition to Firefox and Chrome (client needs).
In my program, I include both pieces of code. It works properly for non-IE ...
1
vote
2answers
100 views
Conditional Comments to target Windows Phone 7 Internet Explorer 9
Problem
Conditional comments, such as
<!--[if IEMobile]>
<p>Welcome to Internet Explorer Mobile.</p>
<![endif]-->
<![if !IEMobile]>
<p>All other ...
1
vote
6answers
67 views
php include with conditional comments
I included some jQuery script on my site. The script doesn't work with anything lower than IE7. Now I want to do the following:
<!--[if !(lt IE 7]>
<?php include 'script.html'; ?>
...
1
vote
1answer
219 views
HTML5 Boilerplate + Conditional Comments
I am using the HTML5 Boilerplate and never had a problem with it until now, when I have started using Selectivizr. For some reason, which I dont understand, IE8 produced a Javascript error.
After ...
1
vote
1answer
66 views
IE Conditional Comment Issue
On a new application we've made a decision to no longer support IE6, so we have a conditional comment to load a script that says as much.
Code is:
<!--[if lt IE 7]>
<h2 ...
1
vote
3answers
119 views
Targets for conditional comments in html?
I know you can target browsers with conditional comments, as explained here in MSDN.
But I just saw one that looked like this <!--[if gte mso 9]>
What does this check for and what (other than ...
1
vote
2answers
2k views
Conditional Style Sheets in IE9
Ok. I am officially at a loss. I have looked, IE9 is supposed to support conditional comments. So, I am probably doing something wrong. I have the correct MIME type, 'type="text/css"'. All of the ...
1
vote
4answers
212 views
Is there a way to introduce Internet Explorer conditional comments using JavaScript?
I have a segment of HTML code which includes a conditional comment:
<!--[if IE]>
<link rel="stylesheet" ...>
<[endif]-->
This code was tested and works correctly when included in ...
1
vote
3answers
123 views
Can I insert a browser test or conditional comments in a CSS file?
Hi
I have a CSS that applies different styles according to the browser, and I want to test for the browser (if browser is not IE) in the CSS file itself (not in the HTML or PHP file).
How can I do ...
1
vote
7answers
2k views
Javascript IE detection, why not use simple conditional comments?
In order to detect IE most Javascript libaries do all sort of tricks.
jQuery seem to add a temporary object into your pages's DOM to detect some features,
YUI2 does regex on the user agent in its ...
1
vote
1answer
589 views
if IE conditional comments not working
It seems like a silly question, but I'm stumped.
I'm using an if IE conditional statement to fix some issues in IE6.
In the head, I have
<!--[if lt IE 7] > <script type="text/javascript" ...
1
vote
2answers
512 views
Determine if in IE8 Compatibility Mode using conditionals
I understand from my research that IE8 does annoying things like forcing itself into IE7 mode for local intranet hosts and local IP ranges. I understand from a previous question that there is no way ...
1
vote
6answers
399 views
Conditional CSS file doesn't override regular CSS
I am using conditional comments to link to a css file (let's call it "IEonly.css") if the IE version is less than 8. I am trying to override some properties in the regular css file. Strangely enough, ...
1
vote
4answers
286 views
Including style sheets for different browsers without JavaScript
I have a utility that scans through my css file and embeds images as base64 to reduce the amount of requests made to the server. Unfortunatly, IE does not support this.
I know how to include IE ...
1
vote
4answers
514 views
Using IE conditional comments to include CSS or JavaScript files results in more http requests
A web designer has created pages for us with IE-specific comments. Consequently, certain stylesheets are only included if the user is using a specific version of IE:
<!--[if lt IE 7]>
<link ...
1
vote
1answer
309 views
Why is Stylesheet loaded when Contional Comment states it should be ignored?
I thought conditional comments would instruct the browser to ignore the content if the condition is not met?!
For example I want to only include a stylesheet if IE6 is the browser. The following in ...
0
votes
1answer
45 views
How to load different scripts for different versions of IE?
I use these scripts to repair the errors in IE (Hacks).
There is one for each version.
I know that everything has IE9.js IE8 and 7 but would like to load
only the necessary script to that ...
0
votes
2answers
69 views
IE7 thinks it is IE8?
I'm trying to use conditional comments to hack IE7 into behaving like a real browser.
But the last few days, IE7 is ignoring conditionals referencing it, and responding only to conditionals targeting ...
0
votes
1answer
60 views
How to XSLT-Transform a XHTML-Dokument with IE-conditional-comments?
I transform a XHTML dokument to another XML-Dokument with XSLT.
In the XHTML-Input-Dokument there are several IE-conditional-comments, like this one:
<!--[if lte IE 7]>
<link ...
0
votes
1answer
20 views
How to serve a JS file to every browser but IE
I dont know why this isn't working. I'm trying to serve a file to good browsers, namely everyone but IE.
<!--[if !IE]>
<script type="text/javascript" src="JS/script.js"></script>
...
0
votes
2answers
38 views
(!IE) Problems with Blocking Code from IE
I have (once again) been enhancing my template for a school site. However, I have run into another problem. I have noticed that the navigation bar does not render properly in any Internet Explorer ...
0
votes
1answer
42 views
IE conditional comments working but tags visible?
I have the magnificent HTML5 javascript shim linked to in my <head>.
It works fine apart from it displays the tags at the top of the page ie:
<!--[if lt IE9]> <![endif]-->
When I ...
0
votes
3answers
68 views
IE Fixes - Conditional Comment Script will not execute
I'm trying to build a website. I have it displaying correctly in every browser except IE versions 8 and lower. IE renders blue boxes around my img's that are also anchors. I can get rid of this by ...
0
votes
2answers
50 views
Do conditional comments only work for stylesheets?
Do conditional comments only work for CSS styles and stylesheet links, or can they be applied to all HTML/JS. I'm asking because I'd like to display a specific message if the user is using a browser ...
0
votes
1answer
213 views
Explorer not loading conditional style-sheet in Wordpress site
I have a wordpress site I am using ie conditional comments to load in an ie specific stylesheet in to. For some reason the changes made aren't being reflected in IE's rendering:
I have tried:
...
0
votes
1answer
350 views
Sharing LESS CSS variables with conditional comments
I have a LESS stylesheet styles.less with some variables that I need to access in my ie7.css stylesheet, which is loaded using conditional comments.
Given that these are entirely separate ...
0
votes
1answer
68 views
HTML5 Sectioning elements and china browsers
I was building a project and was using HTML5 sectioning elements and HTML5 shiv/mordernizr to handle older IEs.
However while building the website, I begin to wonder about how will the china based ...
0
votes
2answers
2k views
IE9 Rounded Corners & CSS Background Gradients Living Together?
I came across a weird thing in IE9 trying to get a background gradient to display.
Basically I'm applying multiple classes to a container object.
<div class="gradient corners"></div>
...
0
votes
4answers
155 views
CSS for IE 8 Only
I need to style some items for only IE 8. If I do this:
<!--[if IE 8]><link rel="stylesheet" href="mystyleIE8.css" type="text/css" media="screen, projection"/><![endif]-->
and ...
0
votes
4answers
110 views
jquery - Conditionaly run script based on option from select menu
I have a list of states in an option menu. I'd like to run a bit of jquery only when either CA or NV are selected. Here is what I have:
$('#state').change(function(){ var text=$('#state ...
0
votes
0answers
87 views
How to get around Drupal comment doubling bug? (e.g. for IE specific stuff)
I've discovered an annoying bug in Drupal. If an HTML comment is entered in the content of a page, for some strange reason Drupal puts it in twice. For example,
<!-- test -->
becomes
...