![]() |
Help getting data out of responseXML
I want my javascript to recieve an xml page containing two bits html code to insert into various places in the page.
example xml page Code:
<?xml version="1.0" ?> window.alert(ajaxreq.responseXML); // displays "[object XMLDocument]" in firefox // displays "[object]" in IE7 window.alert(ajaxreq.responseXML.xml); // displays the contents of the xml file in IE7 // displays "undefined" in firefox Seems so good so far.... But that is far as I can get. When I try window.alert(ajaxreq.responseXML.getElementsByTagName("image")[0].nodeValue); //returns null in both IE and Firefox..... Am I doing something wrong? How do I get the contents of <image> and <exif> nodes so that I can insert them into my page? |
Code:
var xmlDoc = ajaxreq.responseXML.documentElement; |
| All times are GMT +1. The time now is 02:43 PM. |
Powered by vBulletin®
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.