[jQuery] Re: Display a loading message till all the images are loaded.

2008-10-12 Thread Sridhar Kuppalli
Thanks MorningZ, Your idea clicked for me... Thanks a Lot -- On Sun, Oct 12, 2008 at 8:06 PM, henson Li <[EMAIL PROTECTED]> wrote: > > I think the jQuery Cycle plugin is better than above on

[jQuery] Re: Display a loading message till all the images are loaded.

2008-10-12 Thread henson Li
I think the jQuery Cycle plugin is better than above one. hehe 2008/10/12 MorningZ <[EMAIL PROTECTED]>: > > Well, you could use CSS to hide the photo gallery to start (display: > none) > > and then hook onto the window load event to show > > so like > > > > > > $(window).load(function() { >

[jQuery] Re: Display a loading message till all the images are loaded.

2008-10-12 Thread MorningZ
Well, you could use CSS to hide the photo gallery to start (display: none) and then hook onto the window load event to show so like $(window).load(function() { $("#Message").hide(); $("#Gallery").show(); }); Loading Page *** Gallery Markup *** On Oct 12, 8:02 am,