vote up 1 vote down star

I control the content of an iframe which is embedded in a page from another domain. Is there any way for javascript in my iframe to make changes to the parent's DOM?

For example, I would like to have my iframed script add a bunch of html elements to the parent DOM. This seems like a pretty tall order - thoughts?

Edit: There exists a technique called "Fragment ID Messaging" which might be a way to communicate between cross-domain iframes.

Edit: Also, Firefox 3.5, Opera, Chrome (etc) seem to be adopting the html5 "postMessage" api, which allows secure, cross-domain data transmission between frames, iframes and popups. It works like an event system. IE8 supports this feature, apparently, which is perhaps a little surprising.

flag

3 Answers

vote up 6 vote down check

Hate to say it but I'm like 99% sure that ain't happenin' directly because of security.

You can try it out here.

link|flag
1  
Thanks, that link demonstrates the problem very well. – aaaidan Aug 18 at 4:51
1  
PS. You ruined my day, but thanks. :P – aaaidan Aug 18 at 4:52
hey man, it's what I do ;) – Andy Gaskell Aug 18 at 4:53
vote up 0 vote down

I guess you will run to security problems without using a proxy. Proxies can be very to use. You can try one of those:

(1) a PHP based proxy (be careful cause there are a lot of ads between useful links)

(2) a Apache .htaccess proxy - just create a subdirectory proxy in your domain and put there a .htaccess file containing:

RewriteEngine on
RewriteRule ^(.*)$ http://picasaweb.google.com/$1 [P,L]

Put the other domain name in place of picasaweb.google.com

Personally I prefer using the Apache proxy

link|flag
Thanks for your answer, warpech. I think my edits confused my original question though, which was asking how I can alter the dom on a parent page from within an iframe from another domain. The short answer seems to be "you can't". So I'm now exploring inter-frame communication methods, and a server-side proxy is certainly one of those. Thanks! – aaaidan Aug 20 at 1:38
vote up -3 vote down

By using parent?

e.g. parent.document.getElementById('div1').style.display = 'none';

link|flag
probably not a cross domain solution though – Dhana Aug 18 at 4:35
And if you want to create new elements consider using document.createElement(); – DmitryK Aug 18 at 4:36
if it works whether this is cross-domain or not depends on where the javascript that makes changes live. If it lives in the parent frame then you can make changes there. – DmitryK Aug 18 at 4:44

Your Answer

Get an OpenID
or

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