Moving a DOM element containing a dynamically created script tag - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T04:53:33Z http://stackoverflow.com/feeds/question/318336 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/318336/moving-a-dom-element-containing-a-dynamically-created-script-tag 3 Moving a DOM element containing a dynamically created script tag DaveG 2008-11-25T18:10:39Z 2009-02-25T21:36:29Z <p>I'm using the Fish Gadget (<a href="http://abowman.com/google-modules/fish/" rel="nofollow">http://abowman.com/google-modules/fish/</a>) within a wiki based CMS, and need to reposition the gadget from one HTML element to another. (Note: the fish gadget is an example -- the problem occurs with other gadgets as well.)</p> <p>If I directly reposition the gadget using the gadgets base class "ig_reset", then everything works. If I try to reposition using a surrounding wrapper, then the iframe used by the gadget seems to take over. Unfortunately I need the flexibility of repositioning using the surrounding wrapper. </p> <p>This seems to have something to do with moving a SCRIPT tag around in the DOM. The gadget dynamically creates a script and a style tag. If I <em>remove</em> the dynamically created script tag from the DOM, and then reposition the wrapper to another location in the DOM, all works well. If I try to <em>move</em> the script tag to another DOM element then the original problem occurs. So <em>moving</em> a script tag around the DOM seems to be the cause -- regardless of when the move occurs (even post-load).</p> <p>I'd like to understand what is happening here to cause the frame to take over the page, and also find a better solution than removing the dynamically created script tag.</p> <p>I put a test up here: <a href="http://solidgone.com/jquery/google-gadget.html" rel="nofollow">http://solidgone.com/jquery/google-gadget.html</a> -- the demo uses jQuery, but I don't think this is related to jQuery...</p> http://stackoverflow.com/questions/318336/moving-a-dom-element-containing-a-dynamically-created-script-tag/318385#318385 5 Answer by John Resig for Moving a DOM element containing a dynamically created script tag John Resig 2008-11-25T18:22:36Z 2008-11-25T18:22:36Z <p>Whenever you append a script element into a page, using jQuery, it will attempt to execute it. Thus when you move ig_reset (which is only a table - no script) it works without issue. When you try to move the wrapper - which contains the script - the script is moved and re-executed.</p> <p>We're working to fix this re-execution issue in jQuery core but for the time being that's what is going on here.</p> http://stackoverflow.com/questions/318336/moving-a-dom-element-containing-a-dynamically-created-script-tag/318406#318406 4 Answer by Shog9 for Moving a DOM element containing a dynamically created script tag Shog9 2008-11-25T18:27:44Z 2008-11-25T18:27:44Z <p>As John Resig notes, this <em>is</em> a jQuery issue. You can verify this by replacing your handler</p> <pre><code>$("#with-wrapper").click(function () { $('.sidebar-content-wrapper').contents().appendTo($("#sidebar")); }); </code></pre> <p>with one that avoids using the jQuery methods to actually move each element:</p> <pre><code>$("#with-wrapper").click(function() { var sidebar = $("#sidebar")[0]; $('.sidebar-content-wrapper').contents().each(function() { // raw DOM method rather than jQuery's // appendTo() -&gt; domManip() -&gt; execute script blocks behavior sidebar.appendChild(this); }); }); </code></pre> http://stackoverflow.com/questions/318336/moving-a-dom-element-containing-a-dynamically-created-script-tag/587983#587983 0 Answer by for Moving a DOM element containing a dynamically created script tag 2009-02-25T21:36:29Z 2009-02-25T21:36:29Z <p>Hi,</p> <p>I've run into this issue myself with some JavaScript code executing when moving a DOM element (driving me nuts!). I didn't have much success with Shog9's code. It still executed even if I use JavaScript's appendChild() so it seems more of a JS issue than a jQuery issue.</p> <p>Any ideas?</p>