954,157 Members — Technology Publication meets Social Media
Username:
Password:
Lost login information?
Have something to say? Contribute New Article Reply to this Article

Please help me

What I am trying to do is preload images on my website and delay my javascript slide-show until the images are completely done loading. Right now the slide-show starts while the images are still loading, making it kind of awkward. I am using this to preload my images but it isn't working.

The is the site http://www.nathancharles.net/i_0.html

If anyone could help me that would be awesome.

silentbob671123
Newbie Poster
3 posts since Nov 2008
Reputation Points: 10
Solved Threads: 0
 

What I am trying to do is preload images on my website and delay my javascript slide-show until the images are completely done loading. Right now the slide-show starts while the images are still loading, making it kind of awkward. I am using this to preload my images but it isn't working.

The is the site http://www.nathancharles.net/i_0.html

If anyone could help me that would be awesome.

Try this:

you can check whether your page is loaded completely using this:window.document.readyState
if(window.document.readyState=='Complete') {
//start image preloaders ....
}

Regards.

sasankasekhar
Newbie Poster
24 posts since Jan 2007
Reputation Points: 10
Solved Threads: 3
 

What I am trying to do is preload images on my website and delay my javascript slide-show until the images are completely done loading. Right now the slide-show starts while the images are still loading, making it kind of awkward. I am using this to preload my images but it isn't working.

The is the site http://www.nathancharles.net/i_0.html

If anyone could help me that would be awesome.

Try This:

if(window.document.readyState=='complete'){
   // call your image slide show functions ....
}


Regards ...

sasankasekhar
Newbie Poster
24 posts since Jan 2007
Reputation Points: 10
Solved Threads: 3
 

thanks much

silentbob671123
Newbie Poster
3 posts since Nov 2008
Reputation Points: 10
Solved Threads: 0
 

This article has been dead for over three months

Post: Markdown Syntax: Formatting Help
You