show post message

PHOTO EMBED

Wed Oct 20 2021 01:21:37 GMT+0000 (Coordinated Universal Time)

Saved by @luizhenrique #javascript

//Replace the closeSelf() function in iframe page to the following

function closeSelf() {
   parent.window.postMessage("removetheiframe", "*");
}

//and on the parent page, add the following code to listen when the iframe sends a message :

function receiveMessage(event){
   if (event.data=="removetheiframe"){
      var element = document.getElementById('iframe-element');
      element.parentNode.removeChild(element);
   }
}
window.addEventListener("message", receiveMessage, false);
content_copyCOPY