Ver Mensaje Individual
  #10 (permalink)  
Antiguo 15/03/2010, 16:17
Avatar de Fernand0
Fernand0
 
Fecha de Ingreso: septiembre-2005
Ubicación: Buenos Aires
Mensajes: 610
Antigüedad: 18 años, 7 meses
Puntos: 19
Respuesta: setTimeout - sólo esperar

usa un closure..

Código Javascript:
Ver original
  1. function reload() {
  2.    setTimeout(function() { window.location.href="<?php echo($href); ?>"; }, 2000);
  3. }