3.3 Events emitted from iframe to parent window
Empowering Control: managing Embed behavior with event emission
<script type="text/javascript">
const onMessage = ({ data }) => console.log(data)
window.addEventListener('message', onMessage, false)
</script>
<iframe id="iframe"
title="Inline Frame Example"
width="800"
height="600"
src="https://api.locoia.com/embedded?embeddedId=...">
</iframe>
Last updated
Was this helpful?