Hi,
var xml = XMLHTTP.responseXML;
var category = xml.getElementsByTagName("category");
alert(category.length); // --> liefert 0allerdings liefert:
alert(XMLHTTP.responseText);die komplette XML-File in einer alertbox. jemand eine idee was falsch sein kann?
Du hast vermutlich die XML-Ressource nicht mit einem passenden Content-Type-Header ausliefern lassen, so dass sie als normaler Text betrachtet wird. Und Text hat nun mal keine "Elements", auf die irgendwie zugegriffen werden koennte - Text ist von Anfang bis Ende "ein Stueck".
MfG ChrisB
--
"The Internet: Technological marvel of marvels - but if you don't know *what* you're lookin' for on the Internet, it is nothing but a time-sucking vortex from hell."
"The Internet: Technological marvel of marvels - but if you don't know *what* you're lookin' for on the Internet, it is nothing but a time-sucking vortex from hell."