Hi everybody !
First, i have a file iframe_page.php using file_get_contents to display content from another page. In this case, my website is http://www.funnywow.com.
Next, i have a file index.php containing:Code:<?php $URL = "http://www.funnywow.com/index.php"; $domain = file_get_contents($URL); $domain = preg_replace('/<head>/i', "<head>\n<base href='$URL'>\n", $domain); echo $domain; ?>
The problem here is: when i first load the page, i can access its content using iframe.contentDocument , i can hide <div id="MainPageBody"> inside the iframe. But when i do some action in iframe (choose effects ->upload photo....) and javascript is not working.Code:<!DOCTYPE html> <html xmlns:fb="http://ogp.me/ns/fb#" lang="en"> <head> <script> function HideDiv() { var x=document.getElementById("myframe"); var y=(x.contentWindow || x.contentDocument); if (y.document)y=y.document; y.getElementById('MainPageBody').style.display="none"; } </script> </head> <body> <iframe id="myframe" src="http://abc.myhost.com/iframe_page.php" width="800" height="600"></iframe> <br /><br /> <input type="button" onclick="HideDiv()" value="Hide div MainPageBody" style="position:absolute" /> </body> </html>
I want to test code in javascript that gets the src of the final image inside the iframe (after click "Go! view the final result").
View demo Here
How can I do this?
Thank you very much.


Reply With Quote
Bookmarks