30/07/2002, 04:21
|
| Moderador extraterrestre | | Fecha de Ingreso: diciembre-2001 Ubicación: Madrid
Mensajes: 6.987
Antigüedad: 23 años Puntos: 61 | |
Re: pop-up con ajuste automático de tamaño Vamos a ver...
un ejemplo:
En la página que abre:
---------------------------------------
<table id="pepe" width="235" height="125">
<tr>
<td>&nbsp;</td>
</tr>
</table>
<script language="JavaScript">
window.open('pepin.html', '', 'width=100,height=100,')
</script>
------------------------------------------
En la abierta (pepin):
<script>
alert(opener.document.getElementById('pepe').width );
</script>
--------------------------------------------
Te enteras? |