Ver Mensaje Individual
  #10 (permalink)  
Antiguo 12/10/2004, 14:58
kenshindark
Invitado
 
Mensajes: n/a
Puntos:
A mí me funciona, pero cuando linkeo en alguno de los contenidos de dentro del iframe la ventana se multiplica de anchura. Y así cada vez q clikeo hasta q llega un momento q el ancho es enooorme .
No se si tengo algo mal:

<html>
<head>
<title>foro</title>
<Link href="style.css" rel="stylesheet" type="text/css">

<SCRIPT TYPE="text/javascript">
function ini()
{
document.getElementById("foro").width =
window.frames.foro.document.body.offsetWidth +
window.frames.foro.document.body.scrollWidth;

document.getElementById("foro").height =
window.frames.foro.document.body.offsetHeight +
window.frames.foro.document.body.scrollHeight;
}
</SCRIPT>
</head>

<body background="images/bgr.gif" leftmargin="0" rightmargin="0" topmargin="0" marginwidth="0" marginheight="0">

<table width="500" align="center">
<tr>
<td><iframe id="foro" name="foro" src="foro/index.php" onload="ini()"></iframe></td>
</tr>
</table>

</body>
</html>

Ayudenme porfavor.