creating a new, empty document with javascript - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T16:14:35Z http://stackoverflow.com/feeds/question/880288 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/880288/creating-a-new-empty-document-with-javascript 1 creating a new, empty document with javascript morgancodes 2009-05-18T23:30:04Z 2009-11-18T00:09:24Z <p>I'm working with some very unintuitive xml (all the tags are things like "TX", "H", "VC"). </p> <p>I'd like to make a copy of this data, but with all of the tags renamed to what they actually mean. Can I create a new, empty document to put my new, nicely named tags in to?</p> <p>I've tried this: </p> <pre><code>doc = (new DOMParser()).parseFromString("", 'text/xml'); </code></pre> <p>but when I do so, I wind up with a document that has a child node, rather than being empty. Furthermore, that child's tagname is "parsererror"</p> <p>So, any ideas how I can create an empty document?</p> http://stackoverflow.com/questions/880288/creating-a-new-empty-document-with-javascript/880301#880301 1 Answer by John Millikin for creating a new, empty document with javascript John Millikin 2009-05-18T23:34:59Z 2009-05-18T23:34:59Z <p>I don't think you can create a document without the root node. You could create a fake node:</p> <pre><code>doc = (new DOMParser()).parseFromString("&lt;dummy/&gt;", 'text/xml'); </code></pre> <p>However, a better solution might be to create constants for the node names:</p> <pre><code>// Use different variable names, like RealTxName, if desired var REAL_TX_NAME = "TX"; var REAL_H_NAME = "H"; ... doc.find (REAL_TX_NAME); ... </code></pre> http://stackoverflow.com/questions/880288/creating-a-new-empty-document-with-javascript/1752772#1752772 0 Answer by Ralph for creating a new, empty document with javascript Ralph 2009-11-18T00:09:24Z 2009-11-18T00:09:24Z <p>Hi,</p> <p>I hade the same issue and I solvded it like below:</p> <p>xmlDoc = document.implementation.createDocument("","",null); root = xmlDoc.createElement("description"); xmlDoc.appendChild(root); alert((new XMLSerializer()).serializeToString(xmlDoc));</p> <p>Cheers, Ralph</p>