My site has a trusted third party Javascript library. At runtime, the library will append various other blocks of Javascript to the page.
I had an issue where one of the blocks of Javascript really messed up my page in IE. The problem is that the script was calling "document.body.appendChild" before the DOM was loaded. IE really doesn't like this.
So, is it possible to intercept all calls to "document.body.appendChild" so that I can filter out certain calls?
EDIT: I do not have access to the third party scripts.