22/04/2003, 13:03
|
| | Fecha de Ingreso: mayo-2002
Mensajes: 132
Antigüedad: 22 años, 6 meses Puntos: 0 | |
ayuda con iframe Este es un java script que según se sirve para pasar valores a una página que llamas a un iframe, osea que tome los valores automaticamente a cargar en un iframe
// 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;
}
Mi pregunta sería ¿Como debo de poner el codigo html para llamar este script?
Gracias por su ayuda. |