You can use the window.postMessage API. Its function is HTML5, and not all browsers support this function.
On the IFrame and the parent site you need to check if the browser supports postMessage
if (typeof window.postMessage != 'undefined') { }
you can send a message using
window.parent.postMessage("test","*");
In your parent (main site) you need an eventlistener
window.addEventListener('message', receive, false);
function receive(evt)
{
}
source
share