Not quite sure what you are trying to do. I think that you has
misinterpreted how to use getNextSibling(). Typically, you do a loop like:
for(DOMNode child = parent.getFirstChild();
child != null;
child = child.getNextSibling()) {...
It looks like you are doing something like:
for(DOMNode child = parent.getFirstChild();
child != null;
child = parent.getNextSibling()) {...
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
- NEWBIE: getNextSibling Still not working Williams Roger
- Re: NEWBIE: getNextSibling Still not working Gareth Reakes
- Re: NEWBIE: getNextSibling Still not working Gareth Reakes
- Re: NEWBIE: getNextSibling Still not working Gareth Reakes
- NEWBIE: getNextSibling Still not working Williams Roger
- RE: NEWBIE: getNextSibling Still not working Williams Roger
- NEWBIE: getNextSibling Still not working Williams Roger
- Re: NEWBIE: getNextSibling Still not working Gareth Reakes
- RE: NEWBIE: getNextSibling Still not working Curt Arnold
- RE: NEWBIE: getNextSibling Still not working Williams Roger
- Re: NEWBIE: getNextSibling Still not working Ryan B. Roleda
