I've an issue with IE9 with the following code:
var XMLDocument = data;
var erreurs = new Array();
var test = data.lastChild.lastChild.childNodes;
for(var i=0; i<test.length; i++)
{
//var testx = test[i].textContent;
//alert("Test"+i+" = "+testx);
var testx = getText(test[i]);
alert(testx);
erreurs[i] = testx;
}
function getText(el) {
return el.textContent || el.innerText || el.nodeValue || '';
}
In FF, Opera and Safari, this code works fine.
In IE, it gives me:
Test0 = undefined
Test1 = undefined
My XML:
<error>
<missing>1</missing>
<missing>2</missing>
<missing>a</missing>
</error>
I just want to return the values of the nodes "missing".
Thank you very much for your help.

return el.textContent || el.innerText || el.nodeValue || '';, so what's the problem? – Esailija May 29 '12 at 18:15nodeValuepart for ie7 and ie8 but even before that they didn't alertundefined, and ie9 worked fine unedited. – Esailija May 29 '12 at 18:20