Skip to content

Instantly share code, notes, and snippets.

@cggaurav
Created October 21, 2013 20:11
Show Gist options
  • Save cggaurav/7090130 to your computer and use it in GitHub Desktop.
Save cggaurav/7090130 to your computer and use it in GitHub Desktop.
iFrame PostMessage
<iframe src="http://y.com" id="iframe"></iframe>
<script>
var sendToWindow = document.getElementById("iframe").contentWindow
function() {
window.postMessage(somedata, "http://y.com")
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment