PDA

View Full Version : An easy question



hendonfc
November 25th, 2003, 18:28
how do you make a page forward you on in 5 seconds..... like after you've posted in this forum it forwards you on.

I should know this...but i don't

Cheers

Jim_Six
November 25th, 2003, 20:37
http://tech.irt.org/articles/js021/

Hi -

check out that link, it should sort you out.

Regards,
Jim Smith
http://www.m6.net

waloxspace
November 27th, 2003, 03:20
you can try using this java script:

<script language="JavaScript" type="text/JavaScript">
function browserRedirect() { var ns4 = document.layers; var ns6 = document.getElementById && !document.all; var ie4 = document.all; if(ns4) URLStr = "1.html"; else if(ns6) URLStr = "2.html"; else if(ie4) URLStr = "3.html"; else URLStr = "4.html"; location = URLStr; }
</script>