XSLT create new HTML tag - Stack Overflow most recent 30 from stackoverflow.com2009-12-23T03:32:38Zhttp://stackoverflow.com/feeds/question/748664http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/748664/xslt-create-new-html-tag1XSLT create new HTML tagIris2009-04-14T17:44:53Z2009-04-14T17:59:44Z
<p>How do I create a new HTML tag/node in XSLT ? I get the node/tag name from another variable.</p>
http://stackoverflow.com/questions/748664/xslt-create-new-html-tag/748676#7486764Answer by ivan_ivanovich_ivanoff for XSLT create new HTML tagivan_ivanovich_ivanoff2009-04-14T17:49:14Z2009-04-14T17:59:44Z<pre><code><xsl:element name="{$ELEMENT_NAME}">
<xsl:attribute name="{$ATTRIBUTE_NAME}">
<xsl:value-of select="$ATTRIBUTE_VALUE"/>
</xsl:attribute>
<content>
<goes>
<here/>
</goes>
</content>
</xsl:element>
</code></pre>
<p><strong>edit:</strong><br />
You need <strong>{</strong> and <strong>}</strong> for the "name" attributes,
but not for the "select" attribute.</p>
<p><a href="http://www.w3.org/TR/xslt#attribute-value-templates" rel="nofollow">Read about <strong>here</strong>.</a></p>
<p>SORRY! I forgot it myself in first 'version' of the answer.</p>