Skip to content

Instantly share code, notes, and snippets.

@XingMXTeam
Created April 25, 2018 07:01
Show Gist options
  • Save XingMXTeam/0b9790e80dbc3637886dacdff44e4810 to your computer and use it in GitHub Desktop.
Save XingMXTeam/0b9790e80dbc3637886dacdff44e4810 to your computer and use it in GitHub Desktop.
// URL: http://a.com/foo
var win = window.open('http://b.com/bar');
win.postMessage('Hello, bar!', 'http://b.com');
// URL: http://b.com/bar
window.addEventListener('message',function(event) {
console.log(event.data);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment