creating a new, empty document with javascript - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T16:14:35Zhttp://stackoverflow.com/feeds/question/880288http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/880288/creating-a-new-empty-document-with-javascript1creating a new, empty document with javascriptmorgancodes2009-05-18T23:30:04Z2009-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#8803011Answer by John Millikin for creating a new, empty document with javascriptJohn Millikin2009-05-18T23:34:59Z2009-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("<dummy/>", '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#17527720Answer by Ralph for creating a new, empty document with javascriptRalph2009-11-18T00:09:24Z2009-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>