2
3
4
5
JavaScript Automatic Page Redirect
6
7
function pageRedirect() {
8
window.location.replace(“https://www.tutorialrepublic.com/”);
9
}
10
setTimeout(“pageRedirect()”, 0000);
11
12
13
14
Note: You will be redirected to the tutorialrepublic.com in 10 sec.
15