[jQuery] Re: Replacing META REFRESH by AJAX , Loading and Post

2009-03-03 Thread Cyril Wan
Query] Re: Replacing META REFRESH by AJAX , Loading and Post you wanna do something like this? function check(){ $.ajax({ ... success:function(){ f(checkCondition) { closeOverlay(); } else { setTimeout(check,

[jQuery] Re: Replacing META REFRESH by AJAX , Loading and Post

2009-03-03 Thread KidsKilla .grin! wuz here
you wanna do something like this? function check(){ $.ajax({ ... success:function(){ f(checkCondition) { closeOverlay(); } else { setTimeout(check, 5000) } } }); } openOverlay(); check(); 2009/3/3

[jQuery] Re: Replacing META REFRESH by AJAX , Loading and Post

2009-03-03 Thread Cyril Wan
No one? I thought this was a no brainer but i just can't get my head around it... May be I can try asking it a different way... Let's say I have a long process that takes 30 - 40 secs , I need to open a Loading overlay that displays an icon that it is processing and at the same time I need to ch