22/01/2010, 10:05
|
| | | Fecha de Ingreso: enero-2010
Mensajes: 4
Antigüedad: 15 años Puntos: 0 | |
Respuesta: Problemas ancho iframe Hola puedes intentar con el siguiente script:
En el Head:
<script language="JavaScript">
<!--
function calcHeight()
{
var the_height=
document.getElementById('el_contenedor').contentWi ndow.
document.body.scrollHeight;
//determina el alto automatico para el Iframe
document.getElementById('el_contenedor').height=
the_height;
}
//-->
</script>
El Iframe:
<iframe width="600" id="el_contenedor"
onLoad="calcHeight();"
src="archivo.php"
scrolling="NO"
frameborder="0"
height="1" allowtransparency="yes">
</iframe>
Espero te sirva. |