How to close iframe from inside iframe? How to close iframe from inside iframe? wordpress wordpress

How to close iframe from inside iframe?


Execute the below code from single.php which is loaded inside the iframe. This will find the iframe using the parent window as context and remove or hide it.

//You can call hide() if you want to just hide it$('#iframe', window.parent.document).remove();


I know a little trick actually.

Make a function on your parent page

var closeIFrame = function() {     $('#iframeid').remove();}

Inside the iframe you want to close call from anywhere you want

parent.closeIFrame();

Tricky, isn't it?


// Inside the iframe    frameElement.remove();