[XSL-LIST Mailing List Archive Home]
[By Thread]
[By Date]
Re: [xsl] XSLT and XML in the same document
Subject: Re: [xsl] XSLT and XML in the same document
From: Julian Reschke <julian.reschke@xxxxxx>
Date: Tue, 29 May 2007 16:08:12 +0200
|
David Carlisle wrote:
In the meantime I realized that if we can't use msxsl:script to
implement exslt:node-set on IE, we *may* be able to use exslt:function
hmm, I wonder what gave you that idea;-)
Well, seems I missed that one. Sorry.
In the meantime....:
<msxsl:script language="JScript" implements-prefix="exslt">
this['node-set'] = function(nodes) {
return nodes;
};
</msxsl:script>
...seems to do what I wanted...
Best regards, Julian
|