I have the iframe:
<iframe id="GameFrame"
sandbox="allow-scripts allow-pointer-lock"
src="https://127.0.0.1:112/games/1047/play">
</iframe>
My parent page is located at:
https://127.0.0.1/arcade/not-hidden/space-blaster-1047
I'm trying to post a message to the iFrame:
var gameIframe = $("#GameFrame");
gameIframe.get(0).contentWindow.postMessage("screenshot", "");
But this throws the error:
Uncaught SyntaxError: Failed to execute 'postMessage' on 'Window': Invalid target origin '' in a call to 'postMessage'.
Other attempts:
postMessage("screenshot", "https://127.0.0.1");
Failed to execute 'postMessage' on 'DOMWindow': The target origin provided ('https://127.0.0.1') does not match the recipient window's origin ('null').
How can I get this posting a message to the iFrame?
Just figured this out right now, need to use *
as the origin:
gameIframe.get(0).contentWindow.postMessage("screenshot", "*");
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With