Ver Mensaje Individual
  #7 (permalink)  
Antiguo 12/03/2010, 20:15
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

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

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