Javascript – How to send window event from iframe js
I want to send an event with data from an iframe to the main application. To do it I use this structure of code: Dispatch event in the iframe window.dispatchEvent(new CustomEvent("play-key", { detail: 'some-custom-key' })); Listen for the event within…