fabrice.regnier wrote:
Hi to all,

i have a nice gif "please wait while loading..." and i'd like to show
it when i click on a button. Is there a nice jquery way to do it ? do
i need a plugin ?

        $("#Idsubmit").click(function () {
               --> start showing the gif
                   long process
              --> stop showing the gif

        });
Easiest is to do it directly:
$("#Idsubmit").click(function () {
   $("#nicegif").show();
   long process
   $("#nicegif").hide();
});

I do it all the time.

Reply via email to