I have a local file that I am displaying in an iframe. I cannot alter the file (or any files included- css, script, etc). I need to remove all of the tags from the file. This is easy enough, but I would like to remove them before the JavaScript inside them is executed. Simply doing:

window.onload = function(){
    iframeHEAD.removeChild(iframeSCRIPT);
}

will remove the script tag, but not before the script tag's code is executed.

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

You can request the file with he XMLHttpRequest object, use a regular expression to remove the unwanted code from the string in the responseText, and than document.write the string into the iframe.

link|improve this answer
Hey, that's a good idea. I was about to do it in PHP, but it might be better to do straight in JavaScript. – Azmisov Sep 14 '10 at 21:45
feedback

You can't do that. Browsers interpret <script> content as soon as it's loaded.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.