Ver Mensaje Individual
  #2 (permalink)  
Antiguo 15/11/2016, 13:55
alvaro_trewhela
Invitado
 
Mensajes: n/a
Puntos:
Respuesta: comunicacion entre ventanas JS

Ve como andas con esto:
Código HTML:
Ver original
  1. <script type="text/javascript">
  2. var ventana;
  3. function abrir(){
  4. ventana = window.open('ventana.php', "titulo", "width=400, height=400");
  5. }
  6.  
  7. function cerrar(){
  8. ventana.close(ventana);
  9. }
  10.  
  11.  
  12. <input type="button" value="abrir" onclick="abrir();"/> <input type="button" value="cerrar" onclick="cerrar();"/>

Puse variable ventana global por buena práctica