xsl-list
[Top] [All Lists]

Re: [xsl] XSLT and XML in the same document

2007-05-29 07:08:35
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

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--