Ver Mensaje Individual
  #2 (permalink)  
Antiguo 05/09/2002, 22:12
Avatar de Mickel
Mickel
 
Fecha de Ingreso: mayo-2002
Ubicación: Lima, Peru
Mensajes: 4.619
Antigüedad: 22 años, 9 meses
Puntos: 7
Re: problema con popup

<script>
function SendAndClose() {
document.formulario.submit();
window.close();
}
</script>

<form action="ventanamadre.php" name='formulario' target="madre">
...
<input type='button' onClick='SendAndClose();' name='BotonEnviar' value='Submit'>
</form>