About Katie Bischoff Expertise I have been making webpages for 5 years. I have worked with everything from Geocities to Dencity to CuteHTML. I can answer almost any question you have, be it about programming in general or different programs to use.
Experience I have been making websites for 5+ years, and I currently run 10 different sites. I went from having a site on Geocities to having my own domain, and in the process I've used quite a few different programs to ccomplish what I wanted.
Question Hi,
Iīd like to know some tips to make my images load faster (I have heard some, like preload images, or use the lowsrc tag, but I really donīt know how to use them).
Thanks for your help.
Answer Hi Francisco,
In order to preload images, just add this code after your </head> command:
<SCRIPT LANGUAGE="JavaScript">
<!-- hide from none JavaScript Browsers
Image1 = new Image(25,30)
Image1.src = "image1.gif"
Image2 = new Image(25,30)
Image2.src = "image2.gif"
Image3 = new Image(25,30)
Image3.src = "image3.gif"
// End Hiding -->
</SCRIPT>
(25,30) should be replaced by the width and height of your image, and image1.gif, image2.gif and so on should be replaced with the names of your images. You can add more if you have more images to preload.
I would recommend using this...it works really well, and the lowsrc tag only works in Netscape, which most people don't use.