xsl-list
[Top] [All Lists]

Re: adding attributes to an existing element

2002-10-15 08:47:20
On Tue, 15 Oct 2002, Jeni Tennison wrote:

Try copying the existing attributes with xsl:copy-of. Something like:

<xsl:template match="name">
  <name number="20">
    <xsl:copy-of select="@*" />
  </name>
</xsl:template>

Thanks.  However, can this solution be used if I do not know the
element name (in this case, `name') a-priori?

For example, if I'd like to do this in:

<xsl:template match="/db/*">
   ...
</xsl:template>

Best,

S. Perugini


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list