Skip to content

Instantly share code, notes, and snippets.

@garethredfern
Created February 1, 2020 15:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save garethredfern/f919d371c3adc165aba8125a11b6ee83 to your computer and use it in GitHub Desktop.
Save garethredfern/f919d371c3adc165aba8125a11b6ee83 to your computer and use it in GitHub Desktop.
Send a message from child content through an iframe.
// https://developer.mozilla.org/en-US/docs/Web/API/Window/postMessage
H5P.externalDispatcher.on("xAPI", function(event) {
window.parent.postMessage(event.data.statement, "*");
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment