vote up 1 vote down star

How do I create a new HTML tag/node in XSLT ? I get the node/tag name from another variable.

flag

6% accept rate
I think you mean "create new element", because a node is pretty everything in XML ;) – ivan_ivanovich_ivanoff Apr 14 at 18:08

1 Answer

vote up 4 vote down
<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>

edit:
You need { and } for the "name" attributes, but not for the "select" attribute.

Read about here.

SORRY! I forgot it myself in first 'version' of the answer.

link|flag
One thing: you may want to show how to make the element's name set via a parameter or variable as that is the OP's intention. – Andrew Hare Apr 14 at 17:50
+1 No need for the attribute example though. I know, I know, but the question was about elements only, and the answer does not gain completeness from it. :) – Tomalak Apr 14 at 18:15

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.