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?
|
I want to create conditional comments in XSLT. But when I use this:
in an Is there any way to create conditional comments in XSLT?
| ||||
|
feedback
|
|
Simply use an For example:
Taming Your Multiple IE Standalones is a great article on this subject. | |||||||||
feedback
|
|
The above solution assumes that the content inside the conditional comment does not contain any XSLT parameters. In the example below we're having a parameter The example here will include the CSS file only if we're using IE7.
The code example would generate output like so if
| |||||
feedback
|