Ver Mensaje Individual
  #2 (permalink)  
Antiguo 26/01/2010, 16:46
Avatar de alor86
alor86
 
Fecha de Ingreso: abril-2009
Mensajes: 110
Antigüedad: 15 años
Puntos: 5
Respuesta: Abrir pop-up y cerrarlo automáticamente luego de cargar...

PRUEBA CON ESTO A VER SI TE FUNCIONA
Código Javascript:
Ver original
  1. function abrirventana(){
  2.                 var v = window.open('miventna.hmtl',null,'width=300;height=300');
  3.                 setTimeout(function(){
  4.                     v.close(); 
  5.                 },5000)
  6.             }