hi
how to read data from XMLDocument by using Javascript. i got coding from internet. but its not read data. help me
its in JavaScript
-----------------------
[CODE=javascript]//server return XML Document
var xmlDoc=xmlHttp. responseXML.doc umentElement;
document.getEle mentById("compa nyname").innerH TML=
xmlDoc.getEleme ntsByTagName("c ompname")[0].childNodes[0].nodeValue;...
Search Result
Collapse
2 results in 0.0046 seconds.
Keywords
Members
Tags
-
how to read data from XMLDocument by using Javascript
-
Generate XML from XMLDocument
I have an XMLDocument that my web page downloads and manipulates as a
response to user input. I have lots of JavaScript that acts as a
controller between my view (html) and my model (xml). That works fine.
Once the user's done editing, I want to send the modified XMLDocument
back up to my server (as XML). The problem is, I can't find a way to
use JavaScript to generate XML from an XMLDocument. Is there some...