XSLT Examples
Try it Yourself - Examples
The <xsl:template> Element
A template contains rules to apply when a specified node is matchedExample explained
<xsl:value-of> Element
Extract the value of a selected nodeExample explained
The <xsl:for-each> Element
Select every XML element of a specified node-set with the <xsl:for-each> elementFilter the output in a node-set
Examples explained
The <xsl:sort> Element
Sort the output in a node-setExample explained
The <xsl:if> Element
Put a conditional test against the content of an XML fileExample explained
The <xsl:choose> Element
Example 1This example will add a pink background-color to the "Artist" column WHEN the price of the CD is higher than 10:
Example 2
This example will add a pink background color to the "Artist" column WHEN the price of the CD is higher than 10, and a grey background-color WHEN the price of the CD is higher than 9 and lower or equal to 10.
Examples explained
The <xsl:apply-templates> Element
Apply templates to elementsExamples explained