After opening an iframe, I sometimes need to close it. Thus far, I just remove the iframe from its parent node, thus cutting it off from the DOM. However, I\'m finding tha
Create a blank.htm file on your site. Have the IFrame SRC set to the blank.htm, then remove the IFRAME.
try this..
<a href="Home.html" target="_parent">
if your using jQuery then you can use $.remove('iframe object id') method. This would remove the DOM object from the page and in this iframe would be removed.