vote up 4 vote down star
1

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 way to create conditional comments in XSLT?

flag

1 Answer

vote up 4 vote down check

Simply use an <xsl:comment> tag and include your comment within the tag.

For example:

<xsl:if test="@id = '1'">
  <xsl:comment>
    <![CDATA[[if IE]><![endif]]]>
  </xsl:comment>
</xsl:if>

Taming Your Multiple IE Standalones is a great article on this subject.

link|flag
Yeah.. It works :) Why you used first line of Code? <xsl:if test="@id='a'"> – Wazdesign May 2 at 6:19
The <xsl:if> ? I thought that you needed the comment to be included conditionally! Where's my vote/acceptance ?! ;-) – Cerebrus May 2 at 6:30
Vote added. ;-) A conditional comment is included unconditionally. But IE evaluates the comment as a conditional -- if it evaluates to true, the code within gets executed. – Tomalak May 2 at 7:45

Your Answer

Get an OpenID
or

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