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: getting multiple values


You're using "nextNode()" twice in the loop, once in the body and once
in the while test. Each time you use it, you move forward a node, so you
move two nodes forwards every time you go through the loop.

Download the Microsoft MSXML documentation (MSXML SDK) and look at the
code samples for nextNode() there.

Francis.

P Vikram wrote:
> 
> Hi
> 
> Can anybody help.iam getting alternate values.Iam
> getting 2,4,6.
> 
> testvar = testXML.documentElement.selectNodes("ID");
> 
>                 idarray = new Array();
>                                         var j =0;
>                 while (testvar.nextNode()){
>                         alert(testvar.nextNode().text);
> 
>                 }
>

 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]