Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would like to use this code

window.parent.document.getElementById('message').value  += "\r\n\r\n[img]"+response+"[/img]";

It works fine for pages coming from the same domain, but not for sites from another domain loaded in the iFrame. How can I do it?

share|improve this question
possible duplicate of Cross Domain URL Access from Iframe using Javascript – biesior Dec 8 '12 at 10:39

4 Answers

You can't. This is called the same origin policy, and prevents javascript accessing content across domains.

share|improve this answer

Due to same origin policy restrictions this is not allowed.

share|improve this answer

As stated, this falls under same origin policy, but there are some tricks that allow limited communication with the iframe. Take a look at http://ajaxify.com/run/crossframe/

share|improve this answer
The fragment hack used in this is extremely slow and has loads of issues - easyXDM is a way better approach. – Sean Kinsey Feb 10 '11 at 23:09

Take a look at easyXDM, it's an easy to use library that provides a unified API for several tricks used to enable cross domain messaging, ranging from postMessage to the FIM-trick as a last resort.
This is what is used by major services such as Twitter and Disqus.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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