setInterval not working.
Hi all,
I m using ajax to send requests in background,
I send request in regular time interval, for that i m using "setInterval"
Consider the following scenario,
1. function gets invoked every after 10 sec.
2. It got called at 10'th sec , and next it wil get called 20'th sec.
3. at 19'th second some alert box of some another javascript function appears on screen.
4. user dosent clicik 'OK' upto 22'nd sec.
5. The function was supposed to get called at 20'th sec wont get called since the java script waiting for the alert box.
6. The f'n will get called at 30'th sec.
for me its necvessary that the function would get called every 10'th sec without fail.
How to acheive this,
I will be thankfull for ur reply.
If not doable with setInterval please tell some other ways.

