I suspect I have an issue with a timeout function in javascript that triggers a refresh. Is there a way in Firebug to view what timeouts have been registered?
Edit: I guess I wasn't clear, is there a way to view the list of timeout callbacks or their status? (Timeleft, fired or not, registered function, etc....)
If you name all the timeouts you can view them in firebug.
var t1 = setTimeout(...,...);
Then in the console you can just type in t1
and press enter
Or type console.log(t1)
into the console and press enter
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With