G
Gary Hasler
I just can't get them to preload! I have menu buttons with .gif
background images which the browser doesn't seem to get around to
downloading until everything else on the page is loaded (which makes the
buttons transparent until then), so I want to preload them. Plus there
are "hover" versions in red color which I want to preload for the normal
reasons. Example here:
http://test.thelogconnection.com/stockplan_A.php?Blue_Ridge
It's the second row of buttons with rounded corners that I'm referring
to.
Here is the code I'm using:
In the HEAD:
<script language="JavaScript" type="text/javascript" >
var preload = new Array();
function PreloadImageList () {
for (i=0; i<PreloadImageList.arguments.length; i++) {
preload = new Image();
preload.src = PreloadImageList.arguments;
}
}
function OnLoadFn ( ) {
//-- PRELOAD UP BUTTON IMAGES
PreloadImageList
('images/Btn_Stockplan_Us.gif','images/arrow-forward_U.gif');
}
//-- LOAD NORMAL BTN IMAGES NOW (PREVENTS TRANSPARENT BUTTONS WHILE PAGE
LOADS)
PreloadImageList ('images/Btn_Stockplan_C.gif',
'images/Btn_Stockplan_N.gif', 'images/Btn_Stockplan_Cs.gif',
'images/Btn_Stockplan_Ns.gif', 'images/Btn_Stockplan_U.gif');
</script>
</head>
<body class="body1" onunload="OnUnLoadFn()" >
background images which the browser doesn't seem to get around to
downloading until everything else on the page is loaded (which makes the
buttons transparent until then), so I want to preload them. Plus there
are "hover" versions in red color which I want to preload for the normal
reasons. Example here:
http://test.thelogconnection.com/stockplan_A.php?Blue_Ridge
It's the second row of buttons with rounded corners that I'm referring
to.
Here is the code I'm using:
In the HEAD:
<script language="JavaScript" type="text/javascript" >
var preload = new Array();
function PreloadImageList () {
for (i=0; i<PreloadImageList.arguments.length; i++) {
preload = new Image();
preload.src = PreloadImageList.arguments;
}
}
function OnLoadFn ( ) {
//-- PRELOAD UP BUTTON IMAGES
PreloadImageList
('images/Btn_Stockplan_Us.gif','images/arrow-forward_U.gif');
}
//-- LOAD NORMAL BTN IMAGES NOW (PREVENTS TRANSPARENT BUTTONS WHILE PAGE
LOADS)
PreloadImageList ('images/Btn_Stockplan_C.gif',
'images/Btn_Stockplan_N.gif', 'images/Btn_Stockplan_Cs.gif',
'images/Btn_Stockplan_Ns.gif', 'images/Btn_Stockplan_U.gif');
</script>
</head>
<body class="body1" onunload="OnUnLoadFn()" >