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

<html>
<head>
<script type="text/javascript"></script>
<script type="text/javascript">
$(window).load(function() {
     $("#Message").hide();
     $("#Gallery").show();
});
</script>
</head>

<body>

   <div id="Message">Loading Page</div>
   <div id="Gallery" style="display:none;"> *** Gallery Markup *** </
div>

</body>
</html>

On Oct 12, 8:02 am, "Sridhar Kuppalli" <[EMAIL PROTECTED]>
wrote:
> Hi All,
>
> I am using a plugin from this 
> sitehttp://benjaminsterling.com/jquery-jqgalscroll-photo-gallery/
> (example is also in the same page) for my gallery.
> Problem here, is I want to display a loading image, till all the images get
> loaded.
> Which I am trying out but i am unable to find it.
>
> Can anybody help me out with this?
>
> *Thanks & Regards*
> Sridhar K N
> [EMAIL PROTECTED]

Reply via email to