crunchit
Version:
Autotrack the events from your users
10 lines (8 loc) • 356 B
JavaScript
const IFRAME_HOST_ORIGIN = `http://localhost:3000`;
const IFRAME_HOST_ORIGIN_HOSTED = `https://labeler-2.vercel.app`;
function sendMessageToIframe(message) {
var iframe = document.getElementById("CRUNCH_IFRAME")?.contentWindow;
console.log("iframe", iframe);
iframe?.postMessage(message, IFRAME_HOST_ORIGIN);
}
module.exports = sendMessageToIframe;