How can i close an iframe when I click outside ?
This is how I'm creating the iframe
on the parent
<script type="text/javascript">
function checkip() {
var iframe = document.createElement("iframe");
iframe.id="capa";
iframe.name="test1";
iframe.src = "iframe2.html";
iframe.width = "200";
iframe.height = "200";
iframe.frameBorder = "1";
iframe.scrolling = "no";
//document.body.replaceChild(iframe, lastElementChild);
document.body.appendChild(iframe);
}
</script>
This is how im closing the iframe.
function _ocultarIframe(){
// document.getElementById('capa').style.display = 'none';
var elem = document.getElementById("capa");
elem.parentNode.removeChild(elem);
}
</script>