Cita:
Iniciado por lircim estoy muy agradecido con tu ayuda..
como decimos en mi pais "
me debes la soda"...
aqui está la actualización de
frame1.html Código HTML:
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
</head>
<script language="javascript">
function abrete_ahora(esto) {
parent.document.getElementById("frame2").src = esto;
}
function RemoveNode(idobj) {
d = document.body;
d_nested = document.getElementById(idobj);
throwaway_node = d.removeChild(d_nested);
}
function createIFrame(idobj){
var newIFrame = document.createElement("<iframe id='" + idobj + "' scrolling='no' src='iframe.html' width='100%' height='150' frameborder='0'></iframe>");
document.body.insertBefore(newIFrame);
var iframe = document.getElementById(idobj);
iframe.src = "iframe.html";
}
</script>
<body bgcolor="#99CCCC">
<iframe id="mi_iframe" scrolling="no" src="iframe.html" width="100%" height="150" frameborder="0"></iframe>
<br><br>
<a href="javascript:void(0);" onClick="RemoveNode('mi_iframe')">CERRAR IFRAME</a> | <a href="javascript:void(0);" onClick="createIFrame('mi_iframe')">CREAR IFRAME</a>
</body>
</html>
enjoy!