Ver Mensaje Individual
  #3 (permalink)  
Antiguo 04/04/2012, 11:53
Avatar de emprear
emprear
Colaborador
 
Fecha de Ingreso: junio-2007
Ubicación: me mudé
Mensajes: 8.388
Antigüedad: 16 años, 10 meses
Puntos: 1567
Respuesta: cerrar popup con window.close

Podés hacer esto


index.html
Código HTML:
Ver original
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4. <title>index</title>
  5. <meta http-equiv="content-type" content="text/html; charset=utf-8" />
  6. </head>
  7. <a href="#" onclick="window.open('pop.html','nventana','width=400,height=400');return false;">pop</a>
  8. <br />
  9. <a href="#" onclick="window.open('cerrar.html','nventana','width=400,height=400');return false;">cerrar</a>
  10. </body>
  11. </html>

2.html
Código HTML:
Ver original
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4. <title>pagina2</title>
  5. <meta http-equiv="content-type" content="text/html; charset=utf-8" />
  6. </head>
  7. <a href="#" onclick="window.open('cerrar.html','nventana','width=400,height=400');return false;">cerrar</a>
  8. </body>
  9. </html>

cerrar.html
Código HTML:
Ver original
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4. <title>cerrar</title>
  5. <meta http-equiv="content-type" content="text/html; charset=utf-8" />
  6. <script type="text/javascript">
  7. //<![CDATA[
  8. self.close();
  9. //]]>
  10. </head>
  11. </body>
  12. </html>

Es decir , para cerrar el popup, cargás en el popup (de nombre "nventana" en el ejemplo) un archivo cerrar que contiene self.close().
Lo podés hacer desde cualquier otra página
Saludos
__________________
La voz de las antenas va, sustituyendo a Dios.
Cuando finalice la mutación, nueva edad media habrá
S.R.

Última edición por emprear; 04/04/2012 a las 12:06