Freezing the DOM to JavaScript: Overwriting DOM modification functions as no-ops - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T23:43:25Z http://stackoverflow.com/feeds/question/429416 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/429416/freezing-the-dom-to-javascript-overwriting-dom-modification-functions-as-no-ops 0 Freezing the DOM to JavaScript: Overwriting DOM modification functions as no-ops jb 2009-01-09T19:43:23Z 2009-01-09T21:04:27Z <p>I'm writing a piece of code that requires the <code>DOM</code> of a website to remain frozen while arbitrary JavaScript runs. Attributes changing is fine but I can't have anything changing the original tag structure of the page!</p> <p>I know in JavaScript there are a base number of functions that can modify the <code>DOM</code>:</p> <pre><code>appendChild( nodeToAppend ) cloneNode( true|false ) createElement( tagName ) createElemeentNS( namespace, tagName ) createTextNode( textString ) innerHTML insertBefore( nodeToInsert, nodeToInsertBefore ) removeChild( nodetoRemove ) replacechild( nodeToInsert, nodeToReplace ) </code></pre> <p>My initial thought was simply to overwrite these functions as no ops:</p> <pre><code>&gt;&gt;&gt; document.write('&lt;p&gt;Changing your DOM. Mwwhaha!&lt;/p&gt;') &gt;&gt;&gt; document.write = function() {} &gt;&gt;&gt; document.write('&lt;p&gt;No-op now!&lt;/p&gt;') </code></pre> <p>While it's easy to do this for the <code>document</code> object the <code>DOM</code> modification functions can be called from many different JavaScript objects! If I could overwrite these functions at top level perhaps it would work?</p> <p>Update from sktrdie:</p> <pre><code>&gt;&gt;&gt; HTMLElement.prototype.appendChild = function(){} &gt;&gt;&gt; $("a").get(0).appendChild(document.createElement("div")) # Still works argh. &gt;&gt;&gt; HTMLAnchorElement.prototype.appendChild = function(){} &gt;&gt;&gt; $("a").get(0).appendChild(document.createElement("div")) # No-op yeah! </code></pre> <p>So it would seem I could just gather the constructors of all <code>DOM</code> elements and run over them putting in no-ops but that still seems pretty messy ... </p> <p><strong>How can I protect the <code>DOM</code> from modification from arbitrary JavaScript?</strong></p> http://stackoverflow.com/questions/429416/freezing-the-dom-to-javascript-overwriting-dom-modification-functions-as-no-ops/429432#429432 0 Answer by surprise_ for Freezing the DOM to JavaScript: Overwriting DOM modification functions as no-ops surprise_ 2009-01-09T19:47:32Z 2009-01-09T19:47:32Z <p>Don't do this. Use a whitelist. Please.</p> http://stackoverflow.com/questions/429416/freezing-the-dom-to-javascript-overwriting-dom-modification-functions-as-no-ops/429436#429436 0 Answer by Click Upvote for Freezing the DOM to JavaScript: Overwriting DOM modification functions as no-ops Click Upvote 2009-01-09T19:47:57Z 2009-01-09T19:47:57Z <p>You could possibly put everything in a <code>&lt;div&gt;</code> tag, and hide that tag, replacing it with another that says 'Loading..'. Then after it has loaded you could hide the loading <code>&lt;div&gt;</code> and replace it with the original.</p> http://stackoverflow.com/questions/429416/freezing-the-dom-to-javascript-overwriting-dom-modification-functions-as-no-ops/429579#429579 1 Answer by Luca Matteis for Freezing the DOM to JavaScript: Overwriting DOM modification functions as no-ops Luca Matteis 2009-01-09T20:24:30Z 2009-01-09T20:24:30Z <p>Have you tried <strong>HTMLElement</strong>.prototype.appendChild = function(){} to overwrite DOM methods at a higher level?</p> http://stackoverflow.com/questions/429416/freezing-the-dom-to-javascript-overwriting-dom-modification-functions-as-no-ops/429641#429641 0 Answer by Salty for Freezing the DOM to JavaScript: Overwriting DOM modification functions as no-ops Salty 2009-01-09T20:39:46Z 2009-01-09T20:39:46Z <p>There is no way to do this. I did a couple of tests and no matter how I tried to overwrite these methods they remain. I believe that they are implemented in a higher level than executable javascript can access, so you can't really touch them.</p> http://stackoverflow.com/questions/429416/freezing-the-dom-to-javascript-overwriting-dom-modification-functions-as-no-ops/429733#429733 0 Answer by tj111 for Freezing the DOM to JavaScript: Overwriting DOM modification functions as no-ops tj111 2009-01-09T21:04:27Z 2009-01-09T21:04:27Z <p>While this is really hackish, the only way to maintain the current DOM structure is to store a "snapshot" of the DOM and check it periodically.</p> <pre><code>//place in anonymous function to prevent global access (function() { //storing the whole DOM as objects would be ideal, but too memory intensive, so a string will have to do. var orignalDOM = document.body.innerHTML; var checkDOM = fuction() { if (document.body.innerHTML != originalDOM) document.body.innerHTML = originalDOM //check that the code is running if (arbitraryCodeIsRunning) setTimeout("checkDOM", 100); } checkDOM(); })(); </code></pre> <p>Probably not what your looking for, but after some testing it's the only way I can think of to maintain DOM structure regardless.</p>