Ver Mensaje Individual
  #5 (permalink)  
Antiguo 30/07/2002, 04:21
Avatar de KarlanKas
KarlanKas
Moderador extraterrestre
 
Fecha de Ingreso: diciembre-2001
Ubicación: Madrid
Mensajes: 6.987
Antigüedad: 22 años, 4 meses
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> </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?