02/08/2007, 10:35
|
| | Fecha de Ingreso: agosto-2007
Mensajes: 3
Antigüedad: 17 años, 3 meses Puntos: 0 | |
problema con iframe Hola buenas
He estado leyendo bastante en este foro, encontre un funcion para redimensionar un iframe pero el problema es que en firefox no va
Os dejo el codigo para ver si me podeis exar un cable.
<html>
<head>
<title>Titulo</title>
<script>
function resize()
{
if (document.all)
document.getElementById("central").style.height = window.frames.central.document.body.scrollHeight + 20
else
document.getElementById("central").style.height = window.frames.central.document.body.offsetHeight + 20
}
</script>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body >
<iframe name="central" src="inicio.html" frameborder="0" scrolling="no" width=900 height=700 onload="resize()"></iframe>
</body>
</html>
Gracias y un saludo |