Ver Mensaje Individual
  #2 (permalink)  
Antiguo 29/04/2003, 12:56
Avatar de caricatos
caricatos
Moderador
 
Fecha de Ingreso: abril-2002
Ubicación: Torremolinos (Málaga)
Mensajes: 19.607
Antigüedad: 22 años, 7 meses
Puntos: 1284
Hola alid:

Mira ésto

Recuerdo que contesté hace algún tiempo esa pregunta con este enlace...

Ésta es la página principal:

Código PHP:
<html>
<
head>
<
title>iframe</title>
<
script language="JavaScript">
<!--
function 
ajustar(anchoalto) {
document.getElementById("marco").style.width ancho;
document.getElementById("marco").style.height alto;
}
// -->
</script>
</head>
<body >
<iframe src="prueba17hijo.html" id="marco" style="width:500;height:200"></iframe>
</body>
</html> 
Y éste el iframe:

Código PHP:
<html>
<
body bgcolor=cyan text=red>
Medidas del padre:<br>
<
form name=padre>
ancho padre:<input name=ancho type=text value=""><br>
alto padre:<input name=alto type=text value=""><br>
<
input type=button value="reajustar marco" onclick="parent.ajustar(document.forms.padre.ancho.value, document.forms.padre.alto.value)"
</form>
</
body>
</
html
Espero que te sirva...

Saludos