14/02/2014, 10:56
|
| | Fecha de Ingreso: agosto-2010
Mensajes: 127
Antigüedad: 14 años, 4 meses Puntos: 1 | |
popup funcion estoy creando un popup y quisiera colocar una funcion que se ejecute al cerrar el popup lo hago asi pero no sale
var MiVentana = window.open("","","toolbar=no, status=no,top=250, left=450, width=555, height=365,scrollbars=1");
MiVentana.document.write('\n</head><iframe src="pages.jpg" width="530" height="320" frameborder="0"> </iframe>\n<body onLoad="window.setInterval(\'location.reload()\',1 000)">\n');
MiVentana.document.write('\n</body>\n</html>');
MiVentana.document.close();
MiVentana.onunload = function() {
alert('hola')
}
agradecere su pronta ayuda |