Guess it\'s a simple question for a javascript guru, but i\'m learning and got a problem I can\'t guess out.
I\'m interested in reading an XML file using javascript. He
In, this case, since the attribute
elements you are looking for are direct children of the object
element, a simple thing you can do is iterate through the child elements of the object
element by hand:
var obj = objList[0]
var childNodes = obj.childNodes
for(var i=0; i
For information on these and other DOM methods, I recommend checking out the documentation over on MDN.