Graphics Waiting to Load in Netscape

J

jim evans

The page below has a JavaScript slide show. In Netscape 7.02 the
introductory graphics don't load until all of the slide show images
have loaded. This makes it look like a broken page for a very long
time. This doesn't happen in IE or older versions of Netscape.

Is there a way to force Netscape 7.02 to load the intro graphics
first?

http://www.ghg.net/jcorbin/CommunityService/Community.htm

jim
 
J

Jim Buyens

-----Original Message-----

The page below has a JavaScript slide show. In Netscape 7.02 the
introductory graphics don't load until all of the slide show images
have loaded. This makes it look like a broken page for a very long
time. This doesn't happen in IE or older versions of Netscape.

Is there a way to force Netscape 7.02 to load the intro graphics
first?

http://www.ghg.net/jcorbin/CommunityService/Community.htm

It may help to preload the images you're concerned about.
To do this, add statements such as the folling in the
<head> section.

<script>
var imgDelete = new Image() ;
imgDelete.src = "images/whatever.gif"
</script>

Jim Buyens
Microsoft FrontPage MVP
(e-mail address removed)
http://www.interlacken.com
Author of:
*------------------------------------------------------*
|\----------------------------------------------------/|
|| Microsoft Office FrontPage 2003 Inside Out ||
|| Microsoft FrontPage Version 2002 Inside Out ||
|| Web Database Development Step by Step .NET Edition ||
|| Troubleshooting Microsoft FrontPage 2002 ||
|| Faster Smarter Beginning Programming ||
|| (All from Microsoft Press) ||
|/----------------------------------------------------\|
*------------------------------------------------------*
 
J

jim evans

It may help to preload the images you're concerned about.
To do this, add statements such as the folling in the
<head> section.

<script>
var imgDelete = new Image() ;
imgDelete.src = "images/whatever.gif"
</script>

That worked! Thanks.

jim
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top