"Cut and Paste" - moving nodes in the DOM with Javascript - Stack Overflow most recent 30 from stackoverflow.com 2010-03-22T13:39:51Z http://stackoverflow.com/feeds/question/324303 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/324303/cut-and-paste-moving-nodes-in-the-dom-with-javascript 1 "Cut and Paste" - moving nodes in the DOM with Javascript brett.newgen http://stackoverflow.com/users/41435 2008-11-27T17:26:30Z 2008-11-28T21:55:15Z <p>I have html code that looks roughly like this:</p> <pre><code>&lt;div id="id1"&gt; &lt;div id="id2"&gt; &lt;p&gt;some html&lt;/p&gt; &lt;span&gt;maybe some more&lt;/span&gt; &lt;/div&gt; &lt;div id="id3"&gt; &lt;p&gt;different text here&lt;/p&gt; &lt;input type="text"&gt; &lt;span&gt;maybe even a form item&lt;/span&gt; &lt;/div&gt; &lt;/div&gt; </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>&lt;div id="id1"&gt; &lt;div id="id3"&gt;...&lt;/div&gt; &lt;div id="id2"&gt;...&lt;/div&gt; &lt;/div&gt; </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#324308 2 Answer by Greg for "Cut and Paste" - moving nodes in the DOM with Javascript Greg http://stackoverflow.com/users/24181 2008-11-27T17:29:37Z 2008-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#324310 0 Answer by trex279 for "Cut and Paste" - moving nodes in the DOM with Javascript trex279 http://stackoverflow.com/users/12649 2008-11-27T17:30:16Z 2008-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>