Want to refresh certain page after certain time interval? Well, there are 2 ways of doing it… I explained the 1st way here. But if you’re using that way, the page will only refresh after the page has finished loading.
Here’s another way of doing it, which will guarantee the page to be auto refreshed after stated interval of time.
- Just copy the following code, and paste it in the page where you want it auto reload
<script language="JavaScript">
//Refresh page script- By Brett Taylor (glutnix@yahoo.com.au)
//Modified by Dynamic Drive for NS4, NS6+
//Visit http://www.dynamicdrive.com for this script
//configure refresh interval (in seconds)
var countDownInterval=60;
//configure width of displayed text, in px (applicable only in NS4)
var c_reloadwidth=200
</script>
<ilayer id="c_reload" width=&{c_reloadwidth}; >
var countDownTime=countDownInterval+1;
function countDown(){
countDownTime--;
if (countDownTime <=0){
countDownTime=countDownInterval;
clearTimeout(counter)
window.location.reload()
return
}
if (document.all) //if IE 4+
document.all.countDownText.innerText = countDownTime+" ";
else if (document.getElementById) //else if NS6+
document.getElementById("countDownText").innerHTML=countDownTime+" "
else if (document.layers){ //CHANGE TEXT BELOW TO YOUR OWN
document.c_reload.document.c_reload2.document.write('Next refresh in '+countDownTime+' seconds')
document.c_reload.document.c_reload2.document.close()
}
counter=setTimeout("countDown()", 1000);
}
function startit(){
if (document.all||document.getElementById) //CHANGE TEXT BELOW TO YOUR OWN
document.write('Next
- The most important thing you will need to change is this part;
var countDownInterval=60;
- The 60 value represent the refresh interval in seconds…
Comment?
»
Leave a comment

ajwa . Naj . Wawa . 26 . 











