User DaveG - Stack Overflowmost recent 30 from stackoverflow.com2009-12-11T04:04:26Zhttp://stackoverflow.com/feeds/user/34783http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/318336/moving-a-dom-element-containing-a-dynamically-created-script-tag3Moving a DOM element containing a dynamically created script tagDaveG2008-11-25T18:10:39Z2009-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/205003/is-it-wrong-to-go-to-interviews-while-employed/266595#2665951Answer by DaveG for Is it wrong to go to interviews while employed?DaveG2008-11-05T20:46:53Z2008-11-05T20:46:53Z<p>Absolutely interview with other companies. I'd highly recommend <strong><a href="http://rads.stackoverflow.com/amzn/click/0060583932" rel="nofollow">Fire Your Boss</a></strong>, which is a little cynical, but provides a very useful lens for viewing your role in corporate life. It advocates continued interviewing, not only to ensure you are being appropriately compensated, but also to ensure you have coverage if you ever need it, particularly in these 'difficult' economic times.</p>
http://stackoverflow.com/questions/318336/moving-a-dom-element-containing-a-dynamically-created-script-tag/318406#318406Comment by DaveG on Moving a DOM element containing a dynamically created script tagDaveG2008-11-26T03:15:13Z2008-11-26T03:15:13ZThanks for the added insight.