Freezing the DOM to JavaScript: Overwriting DOM modification functions as no-ops - Stack Overflow most recent 30 from stackoverflow.com2009-12-19T23:43:25Zhttp://stackoverflow.com/feeds/question/429416http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/429416/freezing-the-dom-to-javascript-overwriting-dom-modification-functions-as-no-ops0Freezing the DOM to JavaScript: Overwriting DOM modification functions as no-opsjb2009-01-09T19:43:23Z2009-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>>>> document.write('<p>Changing your DOM. Mwwhaha!</p>')
>>> document.write = function() {}
>>> document.write('<p>No-op now!</p>')
</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>>>> HTMLElement.prototype.appendChild = function(){}
>>> $("a").get(0).appendChild(document.createElement("div"))
# Still works argh.
>>> HTMLAnchorElement.prototype.appendChild = function(){}
>>> $("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#4294320Answer by surprise_ for Freezing the DOM to JavaScript: Overwriting DOM modification functions as no-opssurprise_2009-01-09T19:47:32Z2009-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#4294360Answer by Click Upvote for Freezing the DOM to JavaScript: Overwriting DOM modification functions as no-opsClick Upvote2009-01-09T19:47:57Z2009-01-09T19:47:57Z<p>You could possibly put everything in a <code><div></code> tag, and hide that tag, replacing it with another that says 'Loading..'. Then after it has loaded you could hide the loading <code><div></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#4295791Answer by Luca Matteis for Freezing the DOM to JavaScript: Overwriting DOM modification functions as no-opsLuca Matteis2009-01-09T20:24:30Z2009-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#4296410Answer by Salty for Freezing the DOM to JavaScript: Overwriting DOM modification functions as no-opsSalty2009-01-09T20:39:46Z2009-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#4297330Answer by tj111 for Freezing the DOM to JavaScript: Overwriting DOM modification functions as no-opstj1112009-01-09T21:04:27Z2009-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>