Tagged Questions

0
votes
4answers
51 views

How to link a conditional style sheet without access to the head

I am working in an enterprise CMS (Autonomy/Interwoven Teamsite) that does not give me direct access to the head of a page. I can only link style sheets and add external js files. Normally I would …
1
vote
1answer
52 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 …
1
vote
1answer
39 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
3answers
187 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?
2
votes
5answers
219 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; } …
4
votes
1answer
215 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 …
1
vote
1answer
183 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 …