Iframe
if ( window.location !== window.parent.location ) {
console.log("In iframe");
} else {
console.log("Not in frame");
}Communicating Between
window.parent.postMessage({ type: "close_spotlight" }, "*");window.onmessage = handlePostedQuestions;
function handlePostedQuestions(packet) {
const msg = packet.data;
debug("Recieved packet", packet);
debug("Recieved msg", msg); //will be {type: ...}
}DOM
Last updated