Quote:
Originally Posted by sunfighter
This will read an xml file for you and place it into a div. I know that's not what you want but it's a start. "xmlhttp.responseText" is the returned file and you can now do with it as you like.
|
Why would responseText be referenced when the info being returned is XML - surely processing it from responseXML where you can then use DOM calls to access the individual elements within it would be the far easier option.
for example you could obtain all the ISBN values using
xmlhttp.responseXML.getElementsByTagName('isbn')