Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What is the best method to preload images <img> and why? I want to show images on link's hover i can't use images in CSS background so i can't use CSS sprite. but i want to preload all images while page load . which are add as <img>.

share|improve this question

1 Answer

You can use the Image() object in JavaScript to preload the image, then swap it in when you're ready. Here's the HTML:

<img name="img01" src="regular_image.jpg">

Then in the JavaScript:

my_img = new Image(); 
my_img.src = "swap_image.jpg";

Which will put the image in your cache. When you swap it in, you can call:

document.img01.src='swap_image.jpg'
share|improve this answer
but i have multiple images. – Jitendra Vyas Aug 14 '10 at 6:29
The idea is that you can preload image by create an Image object then setting its source. If you have multiple images, then you can create multiple Image objects. Or, if you're going to append them to the document instead of swapping, you can create <img> elements instead. – syockit Aug 14 '10 at 14:30

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.