How to Communicate Between Iframe and the Parent Site?
The Website in the Iframe Isn't Located in the Same Domain, but Both Are Mine, and I Would Like to Communicate Between the Iframe and the Parent Site. Is It...
The website in the iframe isn't located in the same domain, but both are mine, and I would like to communicate between the iframe and the parent site. Is it possible?
6 Answers
With different domains, it is not possible to call methods or access the iframe's content document directly.
You have to use cross-document messaging.
Must Read
parent -> iframe
For example in the top window:
myIframe.contentWindow.postMessage('hello', '*');
and in the iframe:
window.onmessage = function(e) {
if (e.data == 'hello') {
alert('It works!');
}
};