"Cut and Paste" - moving nodes in the DOM with Javascript - Stack Overflow most recent 30 from stackoverflow.com2010-03-22T13:39:51Zhttp://stackoverflow.com/feeds/question/324303http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/324303/cut-and-paste-moving-nodes-in-the-dom-with-javascript1"Cut and Paste" - moving nodes in the DOM with Javascriptbrett.newgenhttp://stackoverflow.com/users/414352008-11-27T17:26:30Z2008-11-28T21:55:15Z
<p>I have html code that looks roughly like this:</p>
<pre><code><div id="id1">
<div id="id2">
<p>some html</p>
<span>maybe some more</span>
</div>
<div id="id3">
<p>different text here</p>
<input type="text">
<span>maybe even a form item</span>
</div>
</div>
</code></pre>
<p>Obviously there's more to it than that, but that's the basic idea. What I need to do is switch the location of #id2 and #id3, so the result is:</p>
<pre><code><div id="id1">
<div id="id3">...</div>
<div id="id2">...</div>
</div>
</code></pre>
<p>Does anyone know of a function (I'm sure I'm not the first person to require this functionality) that can read and write the two nodes (and all their children) so as to swap their location in the DOM?</p>
http://stackoverflow.com/questions/324303/cut-and-paste-moving-nodes-in-the-dom-with-javascript/324308#3243082Answer by Greg for "Cut and Paste" - moving nodes in the DOM with JavascriptGreghttp://stackoverflow.com/users/241812008-11-27T17:29:37Z2008-11-27T17:29:37Z<p>In this case, <code>document.getElementById('id1').appendChild(document.getElementById('id2'));</code> should do the trick.</p>
<p>More generally you can use <code>insertBefore()</code>.</p>
http://stackoverflow.com/questions/324303/cut-and-paste-moving-nodes-in-the-dom-with-javascript/324310#3243100Answer by trex279 for "Cut and Paste" - moving nodes in the DOM with Javascripttrex279http://stackoverflow.com/users/126492008-11-27T17:30:16Z2008-11-27T17:37:29Z<p>A bit cumbersome, but try this</p>
<pre><code>var a = document.getElementById("id2").innerhtml;
var b = document.getElementById("id3").innerhtml;
document.getElementById("id2").innerhtml = b;
document.getElementById("id3").innerhtml = a;
document.getElementById("id2").id="a"
document.getElementById("id3").id="id2"
document.getElementById("a").id="id3"
</code></pre>