This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

RE: Difficulty with an msxsl:script function.


Yes it does work, but you are passing in a node-set. Therefore,

function getLanguage(oNodeSet) {
  oNodeSet.item(0).
...


Although, from the original code, it looks as though you are trying to 
navigate through an HTML DOM from within XSLT. Unless you instantiated 
MSHTML inside the XSLT javascript, I don't think you'd ever get an HTML DOM 
usuable from XSLT.


Richard

>From: Kay Michael <Michael.Kay@icl.com>
>Reply-To: xsl-list@lists.mulberrytech.com
>To: "'xsl-list@lists.mulberrytech.com'" <xsl-list@lists.mulberrytech.com>
>Subject: RE: [xsl] Difficulty with an msxsl:script function.
>Date: Tue, 19 Dec 2000 09:53:34 -0000
>
> > <msxsl:script language="JavaScript" implements-prefix="user">
> > 	function getLanguage()
> > 	{
> > 		var lang=document.mycombo....
> >
>Try passing the root node of the document as a parameter to the function,
>i.e. call user:getLanguage(/), and use this parameter instead of 
>"document".
>I don't know MSXML3 well enough to be sure this will work, but it seems
>likely.
>
>Mike Kay
>
>  XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
>

_________________________________________________________________________
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.


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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]