Comunidad de diseño web y desarrollo en internet online

Redireccionar a otra página al llegar la cuenta atrás a 0

Citar            
MensajeEscrito el 02 Abr 2017 02:56 am
Tengo el siguiente código javascript

Código Javascript :

function countdown(minutes) {
    var seconds = 60;
    var mins = minutes
    function tick() {
        var counter = document.getElementById("counter");
        var current_minutes = mins -1
        seconds--;
        counter.innerHTML = current_minutes.toString() + ":" + (seconds < 10 ? "0" : "") + String(seconds);
        if( seconds > 0 ) {
            setTimeout(tick, 1000);
        } else {
            
            if(mins > 1){
                
                countdown(mins-1);         
                    
            }
        }
    }

    tick();
}

countdown(1);


Como puedo hacer para que cuando la cuenta atrás llegue a 0 me envíe a otra página?

Por armijo

8 de clabLevel



 

chrome
Citar            
MensajeEscrito el 02 Abr 2017 04:30 pm

Por aukun

Claber

200 de clabLevel



Genero:Masculino  

firefox

 

Cristalab BabyBlue v4 + V4 © 2011 Cristalab
Powered by ClabEngines v4, HTML5, love and ponies.