[jQuery] Re: How to show Updating container

2007-08-18 Thread Potluri
Thanks a lot Ganesh, It works for me. I've beenworking a lot on this. Regards, Vijay Potluri Ganeshji Marwaha wrote: > > try something like this... > > $("#some_table_name").click(function() { >$("#rs_loading").show(function() { > someFuncTORefine(); > $("#rs_loading").hide();

[jQuery] Re: How to show Updating container

2007-08-17 Thread Ganeshji Marwaha
try something like this... $("#some_table_name").click(function() { $("#rs_loading").show(function() { someFuncTORefine(); $("#rs_loading").hide(); }); }); -GTG On 8/17/07, Potluri <[EMAIL PROTECTED]> wrote: > > > > So whats the alternative for this to work... there should be

[jQuery] Re: How to show Updating container

2007-08-17 Thread Potluri
So whats the alternative for this to work... there should be definitely a alternative... Stephan Beal-3 wrote: > > > On Aug 17, 6:36 pm, Potluri <[EMAIL PROTECTED]> wrote: >> function() >> { >> $("#rs_loading").show(); >> >> someFuncTORefine(); >> $("#rs_loading").hide(); >> } > ... >> I dont

[jQuery] Re: How to show Updating container

2007-08-17 Thread Stephan Beal
On Aug 17, 6:36 pm, Potluri <[EMAIL PROTECTED]> wrote: > function() > { > $("#rs_loading").show(); > > someFuncTORefine(); > $("#rs_loading").hide(); > } ... > I dont know where it's breaking it rs_loading container is shown after the > someFuncTORefine() is executed. So it appears once the refine