изменить URL с JavaScript через 5 секунд

window.setTimeout(function(){
    window.location.href = "https://www.google.co.in";
}, 5000);
Haribo27