XSLT create new HTML tag - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T03:32:38Z http://stackoverflow.com/feeds/question/748664 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/748664/xslt-create-new-html-tag 1 XSLT create new HTML tag Iris 2009-04-14T17:44:53Z 2009-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#748676 4 Answer by ivan_ivanovich_ivanoff for XSLT create new HTML tag ivan_ivanovich_ivanoff 2009-04-14T17:49:14Z 2009-04-14T17:59:44Z <pre><code>&lt;xsl:element name="{$ELEMENT_NAME}"&gt; &lt;xsl:attribute name="{$ATTRIBUTE_NAME}"&gt; &lt;xsl:value-of select="$ATTRIBUTE_VALUE"/&gt; &lt;/xsl:attribute&gt; &lt;content&gt; &lt;goes&gt; &lt;here/&gt; &lt;/goes&gt; &lt;/content&gt; &lt;/xsl:element&gt; </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>