Ver Mensaje Individual
  #3 (permalink)  
Antiguo 23/04/2003, 07:29
Avatar de tunait
tunait
Moderadora
 
Fecha de Ingreso: agosto-2001
Ubicación: Terok Nor
Mensajes: 16.805
Antigüedad: 22 años, 8 meses
Puntos: 381
Buenas,

prueba a meterlo todo dentro de una función

function redimensionar(){
// Get all TDs in document
var docTD = document.getElementsByTagName('TD');

// Define the IFRAME
var theIframe = document.getElementById('NukeWrap');

// Find the TD with the greatest height
var i = 0;
var theHeight = 0;

while(i != docTD.length)
{
theTD = docTD[i];

if(theTD.offsetHeight > theHeight)
{
var theHeight = theTD.offsetHeight;
}

i++;

}

// Size the IFRAME
if(theHeight != 0)
{
theIframe.height = theHeight;
}
}

Y a la página que se cargue dentro de tu iframe le puedes pedir un

<body onload="parent.redimensionar()">

Es mi sugerencia dentro de lo poco que entendí

Si eso, pues explicoteas un poco más a ver si acertamos

saludos