> So I guess I should interpret getNextSibling() as the next node at the > same level as the refChild? A sibling is a node with the same parent. If you have the document <a><b/> <c/></a>, b and c both have a as their parent. b is c's previous sibling, and c is b's next sibling. If you then issue the operation a.insertbefore(d,null), or a.appendChild(d), d will become a's last child: <a><b/><c/><d/></a>. ______________________________________ Joe Kesselman / IBM ResearchReceived on Wednesday, 8 March 2000 13:56:58 GMT
This archive was generated by hypermail 2.2.0+W3C-0.50 : Tuesday, 27 October 2009 08:24:51 GMT