I'm hoping some can help me with the following...  This is what I want
to do...

1) Retrieve an XML data structure from the web server (easy enough
using jQuery.ajax()).

2) Interrogate and update the data (again easy enough using standard
jQuery methods against the XML DOM).

3) Post the modified XML data back to the server (for storage).

Item #3 is the problem.  As far as I know the only way to get the XML
data back to the server is as a simple string.  Is there a recommended
way for serialising the XML DOM?  I've looked at using:

(new XMLSerializer()).serializeToString(xmlData);

but the general consensus from looking at other posts is that this
does not appear to be consistent/reliable across all browser
platforms.  Is there another, better way?

Thanks.

Reply via email to