Quote:
Originally Posted by wolfgang2
thank You BlackRabbit1971 for your help
So if i write:
setTimeout('requestShouts()', 1000/s)
It reloads every second
if i write:
setTimeout('requestShouts()', 60000/s)
it reloads every minute right?
if i would write:
setTimeout('requestShouts()', 120000/s)
sorry i have to ask so many times, but i got a really traffic problem...so i have to put it down to 2 minutes reloading or even more...
:nervous:
|
Almost there... but you have left the /s next to the values....
setTimeout('requestShouts()', 60000)
Should look like that.... for a reload every min...
setTimeout('requestShouts()', 120000)
And like that for 2 mins... ok
Just change the value in the line...
setTimeout('requestShouts()',
10000)
BR
PS.. Always best to keep asking if ya not sure..