Thread: Browser Refesh
View Single Post
  #4 (permalink)  
Old 08-20-2003, 05:51 PM
Till's Avatar
Till Till is offline
Administrator
 
Join Date: Jan 2002
Location: Berlin, Germany
Posts: 1,453
Well, it's easy. You use a JavaScript that refreshed your page and put in a little testing code.

I would set this onLoad:
Code:
var testReloadDone=false;
Then, in your refresh:
Code:
...
if(!testReloadDone){
  // do refresh
  testReloadDone=true;
}
Enough hints?
Reply With Quote