Hi, I'm building a tool that is used to configure a build process. The website is based on a XML file that is transformed with XSLT into XHTML. The users can then edit the page by updating the DOM in different ways (input fields, new elements etc), when they are satisfied they should submit the entire updated page back to the server for reverse XSLT parsing back into the configuration file. I got it all up and running, but I have run into problems, values of input fields are not updated if I just return $("body").html(). Is there a general way to return the entire updated DOM?
Morten