Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How do I use javascript or jQuery to close an iframe within iframe itself? I've tried <a href="javascript:self.close()"> but it didn't work.

share|improve this question

2 Answers

up vote 20 down vote accepted

"Closing" the current iFrame is not possible but you can tell the parent to manipulate the dom and make it invisible.

In IFrame:

parent.closeIFrame();

In parent:

function closeIFrame(){
     $('#youriframeid').remove();
}
share|improve this answer
1  
As this is tagged as jQuery that line in closeIframe could be $('#youriframeid').hide() or .remove() :-) – ikanobori Jul 19 '11 at 22:53
+ 1 - ah yes. I always default to raw js when its not jquery specific. – citizen conn Jul 19 '11 at 23:16
@citizen, if I don't have control to the parent domain. Can this be handled in iframe itself? Like in iframe, referencing the iframe itself by parent.getElementByID("iFrameID").remove(); – Stan Jul 19 '11 at 23:18
1  
oh it's cross domain? you won't be able to manipulate the dom without entering a whole new world of pain. – citizen conn Jul 19 '11 at 23:23
parent object is quite efficient.. I think this is how an iframe relates its parental page? – kirlisakal Sep 11 '12 at 8:55

try this ,its simple and easy

parent.window.location.href='parent_file_name.php';

it just reload the parent page

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.