Hi,
For this you have implement your page like this.
First of all display:noen the button untill the page load. Once
page is loaded, then show it. At begin of the u have to hide it and at
end of the page you have to show it.
Ex: $(function()
{
//hide at first
$("#yourbutton-or-link").hide();
//some loading comes here
//end of the loading or getting final success data
$("#yourbutton-or-link").show
();
});
Initially your button or link in hide status.
Regards
sure
On Mar 14, 3:48 am, Microbe <[email protected]> wrote:
> Hey folks,
>
> I am using jquery popup on a page that loads a few images plus a cgi
> script
>
> Problem is that if person is too quick and clicks before everything is
> loaded they get an error from the cgi.
>
> I'd like it to show "please wait" or something if they click before
> page is finished loading. Then, if the have clicked too early they
> get "OK, ready now" when it is.
>
> Best way to do this in jquery?
>
> Thanks in advance
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"jQuery UI" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/jquery-ui?hl=en
-~----------~----~----~----~------~----~------~--~---