div elements-- they all get loaded at page load?

  • Thread starter Thread starter MDBJ
  • Start date Start date
M

MDBJ

if a layer has a bandwidth intensive image on it- any way to force hidden
layers to load pictures after the visible layers are done?
 
Move the coding for the hidden layers to the bottom of the page.

Images are loaded by the browser in the order the image tags are encountered in the html in
the page.

--
Steve Easton
Microsoft MVP FrontPage
95isalive
This site is best viewed..................
...............................with a computer
 
No. Sorry.

Well, actually, there is - you could use the set text behavior on the body
tag with an onLoad event to set the text of the layer to be a link to the
image tag. This would delay its loading until the entire page has loaded.
Perhaps a simpler way would be to just move the code for the layer so that
it is at the very bottom of the page (right above </body>).
 
Back
Top