Re: I am getting crazy. Can't access XML contents in Firefox.
"Jonathan Bond" <[email protected]>
| Newsgroups | gmane.comp.mozilla.devel.xml |
|---|---|
| Organization | GoldenEye Solutions |
| Message-ID | <[email protected]> |
For example:
for(var i = 0; i < arrTemp.length; i++) {
alert(arrTemp[i].childNodes[0].firstChild.data);
}
is what your looking, when debugging it's a good idea to check
arrTemp[i].childNodes[0].nodeType = 1 (it's an element)
jon