Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
I think you mean "create new element", because a node is pretty everything in XML ;) – ivan_ivanovich_ivanoff Apr 14 '09 at 18:08

1 Answer

<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.

share|improve this answer
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 '09 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 '09 at 18:15

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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