Graphics Waiting to Load in Netscape

  • Thread starter Thread starter jim evans
  • Start date Start date
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
 
-----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) ||
|/----------------------------------------------------\|
*------------------------------------------------------*
 
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
 
Back
Top