Here is one example. 10000 is a time (it's 10 seconds)
which will be waited until browser is automatically moved
to another page. So you can change the number 10000 to 0
and browser will be moved right away to another page.
You should make also a link if redirection is not working.
<head>
<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
redirTime = "10000";
redirURL = "http://www.123.test/otherpage/";
function redirTimer() { self.setTimeout
("self.location.href = redirURL;",redirTime); }
// End -->
</script>
</head>
<body onLoad="redirTimer()">
>-----Original Message-----
>Is there a simple script I can add to my home page to
automatically
>(seamlessly) take the browser to another page..
>
>For example my domain www.123.test
>
>I want to automatically go to www.123.test/otherpage/
>
>
>I am sure this is simple to do but I don't know how to..
>
>Any assistance appreciated.
>
>John Parker
>
>
>.
>