Hi there guys,
I got the page to load by removing the preloader from the script entirely, giving me my page load back, but I was wondering if there was a way to alter the preloader to tell it to load the images but only after the rest of the pageload is done?
Code:
// preload images that are to appear in tooltip
// from arrays above
if (document.images) {
var theImgs = new Array();
for (var i=0; i<messages.length; i++) {
theImgs[i] = new Image();
theImgs[i].src = messages[i][0];
}
}
thanks for any help,
json
Bookmarks