Ubah URL dengan JavaScript setelah 5 detik

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