Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a static HTML page with a form. I want to extract data from text box or use the data in XML into textbox with the help of javascript.

Will appreciate any help or pointers.

share|improve this question

3 Answers

up vote 0 down vote accepted

Here are tutorials 1, 2 .

(new XMLSerializer()).serializeToString(xmlNode) ;
share|improve this answer

Use a DOM. Look up examples on w3schools.

share|improve this answer
Thanks for the answer. Any tutorials how to make XML with javascript and DOM? – Expedient Jan 5 '11 at 7:18
1  
w3schools? Seriously? – Shikiryu Jan 5 '11 at 8:33

you can use usefull jquery function .map() and serialize()

edit:to write xml with javascript [http://www.codeproject.com/KB/ajax/XMLWriter.aspx]

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.