JavaScript Source Code 3000: Misc.: Refresh (Source)




























Refresh (Page 2)








Sometimes, it may be necessary to forward visitors autmatically (or in a certain number of seconds) to another page. If you move to a different server, you might put this script at the old server pointing visitors to the new server.










JavaScript Source Code 3000: Misc.: Refresh
Simply click inside the window below, use your cursor to highlight the script, and copy (type Control-c or Apple-c) the script into a new file in your text editor (such as NotePad or SimpleText) and save (Control-s or Apple-s). The script is yours!




    





<!-- ONE STEP TO INSTALL REFRESH:

1. Paste the coding into the HEAD of your HTML document -->

<!-- STEP ONE: Copy this code into the HEAD of your HTML document -->

<HEAD>

<META HTTP-EQUIV="REFRESH" CONTENT="10;URL=refresh2.html">

<!-- Or use this method .... -->

<BODY onLoad=window.setTimeout("location.href='next-page.html'",10000)>



<!-- Script Size: 1.36 KB -->