Creating conditional comments with XSLT ? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T07:29:18Z http://stackoverflow.com/feeds/question/814249 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/814249/creating-conditional-comments-with-xslt 4 Creating conditional comments with XSLT ? Wazdesign 2009-05-02T05:57:10Z 2009-05-16T08:08:45Z <p>I want to create <a href="http://msdn.microsoft.com/en-us/library/ms537512%28VS.85%29.aspx" rel="nofollow">conditional comments</a> in XSLT.</p> <p>But when I use this:</p> <pre><code>&lt;!-- [If IE7] [endif] --&gt; </code></pre> <p>in an <code>&lt;xsl:comment&gt;</code>, XSLT removes it from the output when it is rendered.</p> <p>Is there any way to create conditional comments in XSLT?</p> http://stackoverflow.com/questions/814249/creating-conditional-comments-with-xslt/814265#814265 4 Answer by Cerebrus for Creating conditional comments with XSLT ? Cerebrus 2009-05-02T06:11:50Z 2009-05-02T06:11:50Z <p>Simply use an <code>&lt;xsl:comment&gt;</code> tag and include your comment within the tag.</p> <p>For example:</p> <pre><code>&lt;xsl:if test="@id = '1'"&gt; &lt;xsl:comment&gt; &lt;![CDATA[[if IE]&gt;&lt;![endif]]]&gt; &lt;/xsl:comment&gt; &lt;/xsl:if&gt; </code></pre> <p><a href="http://www.positioniseverything.net/articles/multiIE.html" rel="nofollow">Taming Your Multiple IE Standalones</a> is a great article on this subject.</p>