I need help with the window.postMessage
method. I'm trying to post a message to an iframe from the parent window.
The iframe's name and ID is myFrame
, and I have tried the following code, with no avail:
document.getElementById('myFrame').contentWindow.postMessage('Hello','*')
Take a step back and debug.
document.getElementById('myIframe')
give you?document.getElementById('myIframe').contentWindow
give you?postMessage
in the iframe?