Código HTML:
var xml=request.responseXML.documentElement; var doc=xml.getElementsByTagName("datos")[0]; var dc=doc.getElementsByTagName("titulo")[0].firstChild.data; alert(dc);
Me dice: null is null or not an object en la última línea.
El xml que imprimo por php es este:
Código PHP:
header("Content-Type: Text/xml");
echo "<?xml version="1.0\" encoding=\"utf-8\"?>
<datos>
<titulo> ".$row[0]." </titulo>
<codart> ".$row[1]." </codart>
<texto> ".$row[2]." </texto>
<tags> ".$row[3]." </tags>
</datos>";
Gracias!