Admittygymn
New Member
I have this XML code:\[code\]<root> <node> </first_child> </second_child> </third_child> </node></root>\[/code\]I need to take all children nodes one by one and save like three Node variable using DOM.If I use\[code\]doc.getElementsByTagName("node");\[/code\]I take this "node" with all the children, while I need only "first_child, second_child and third_child"How to obtain this?