Начало
Навигация
Временный Redirect
Cпособ перенаправить пользователя на другую страницу с помощью JavaScript.
(Вы будете переадресованы к javascriptlist через 25 секунд!)
JavaScript Navigation: Временный Redirect
<!-- TWO STEPS TO INSTALL TIMED REDIRECT: 1. Copy the coding into the HEAD of your HTML document 2. Add the onLoad event handler into the BODY tag --> <!-- STEP ONE: Paste this code into the HEAD of your HTML document --> <HEAD> <SCRIPT LANGUAGE="JavaScript"> <! > <! > <!-- Begin redirTime = "15000"; redirURL = "http://javascriptlist.narod.ru"; function redirTimer() { self.setTimeout("self.location.href = redirURL;",redirTime); } // End --> </script> <!-- STEP TWO: Insert the onLoad event handler into your BODY tag --> <BODY onLoad="redirTimer()"> <!-- Script Size: 0.88 KB -->