Skip to content

Instantly share code, notes, and snippets.

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 cesarpachon/f187e6114d0acf2978360bdf1f7e0db2 to your computer and use it in GitHub Desktop.
Save cesarpachon/f187e6114d0acf2978360bdf1f7e0db2 to your computer and use it in GitHub Desktop.
communicate iframe with parent via postMessage
//in the parent:
window.addEventListener("message", function(m){console.log(m);})
//in the iframe:
window.parent.postMessage("hola", "*")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment