Is there any event in Internet Explorer, that is fired whenever DOM is changed? For example:
document.attachEvent(\"ondocumentchange\", function () { ale
Brute-force "solution":
(function (previousInnerHTML) { return function () { if (document.body.innerHTML !== previousInnerHTML) { alert("you've just (at max 33ms ago) changed DOM"); } setTimout(arguments.callee, 33); }; })(document.body.innerHTML)();