Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I disable scripts in my iframe? [duplicate]

I have an iframe that loads a page that I would like to disable the javascripts loading in the iframe loaded page. The loaded page has menu bars, dropdowns, etc. that make the home page that I am loading this iframe from load slow. Is there a way to disable javascript from my iframe page?

I need the javascripts to remain in the page because the visitor can visit the page.

Here is my code for loading the iframe:

<div style="position:absolute; overflow:hidden; width: 800; height:400; left:-170px; top:0px;">
<iframe src="/News/Pages/Default.aspx" style="overflow:hidden; width:100%; height:650;"
      frameborder="0" marginheight="0" marginwidth="0" scrolling="no">
</iframe></div>

If this is not possible, than is there a way to stop/disable the iframe page from loading the .js files. The iframe page loads .js files, no javascript is inline.

like image 766
sange Avatar asked Oct 14 '22 23:10

sange


1 Answers

Check out the last code example on this page, http://www.iframehtml.com/iframe-scripts.html

Shows a method of stripping JavaScript from the iframe's source file using PHP

like image 174
Chaoley Avatar answered Oct 16 '22 15:10

Chaoley