Menu Close

Redirect URL by Javascript with redirect time display.

Following code will show the visitors that the URL will be redirected in 10 Second.

<pre>
 <script type = "text/javascript">
         <!--
            function Redirect() {
               window.location = "http://forums.powerhoster.com";
            }            
            document.write("You will be redirected to main page in 10 sec.");
            setTimeout('Redirect()', 10000);
         //-->
 </script>
</pre>

Related Posts