JavaScript запустите что -нибудь через x секунд

setTimeout(function(){
  location.reload();
}, 3000); //run this after 3 seconds
SantiBM