We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Send a message to another frame.
// Frame A: send a message to frame B sendPostMessage({ target: frameB, eventName: "hello", data: { foo: "bar" }, }); // Frame B: receive message from frame A onPostMessage({ eventName: "hello", callback: (event, data) => { console.log(data); // output: { foo: 'bar' } }, });
There was an error while loading. Please reload this page.