How To Redirect To A New Page After A Delay Using Javascript
erics, August 16th, 2011
1 2 3 |
setTimeout(function() { window.location.href = "/index.html"; }, 4000); |