
Cuenta atras para redireccionar
var totalTiempo=5;
var url=»https://www.youtube.com/»;
function updateReloj() {
$(‘#CuentaAtras’).html(«Redireccionando en «+totalTiempo+» segundos»);
if(totalTiempo==0) {
window.location=url;
}else{
totalTiempo-=1;
setTimeout(«updateReloj()»,1000);
}
}
$(document).ready(function(){
updateReloj();
});