Subject: Re: Name of an Attribute node.
From: David Carlisle <davidc@xxxxxxxxx>
Date: Tue, 11 Apr 2000 17:42:40 +0100 (BST)
|
> I am using the msxsl3 XSLT
but you are writing your sheet in the style of the non standard xsl in
the base ie5 release.
<xsl:when test=".[nodeName()='style' || nodeName()='onload']"/>
grab a copy of the XSLT and Xpath specs and search for nodeName
you will find that it is not there. (This function was never in any
draft of XSL as far as I can remember)
<xsl:when test="name(.)='style' or name(.)='onload'"/>
David
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|