Can some PLEASE tell me how to simply get the value from an xml element? Seems pretty simple but for some reason the Mozilla idiots didn't make it common sense. Stupid stuff like this gives me a headache!
This works in IE:
obj.childNodes[i].text
None of these work in Mozilla browsers when using the DOMParser object:
obj.childNodes[i].text
obj.childNodes[i].value
obj.childNodes[i].innerText
obj.childNodes[i].nodeValue
...
HELP :-)