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.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||
|
|
|
"Closing" the current iFrame is not possible but you can tell the parent to manipulate the dom and make it invisible. In IFrame:
In parent:
|
|||||||||||||||
|
|
try this ,its simple and easy parent.window.location.href='parent_file_name.php'; it just reload the parent page |
|||
|
|