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

Can you tell me if the function I wrote below is enough to preload images in most if not all browsers commonly used today?

function preloadImage(url)
{
    var img=new Image();
    img.src=url;
}

I have an array of imageURLs that I loop and call the preloadImage function for each URL.

Thank you.

share|improve this question

4 Answers

up vote 3 down vote accepted

yes.. this should work on all major browsers

share|improve this answer
Thank you Huzi. – Francisc Sep 6 '10 at 9:36

Alternatives: http://www.thecssninja.com/css/even-better-image-preloading-with-css2

share|improve this answer
Thanks mplungjan. Although it doesn't help me with this particular case, it is good to know. – Francisc Sep 6 '10 at 9:36

Yes it does, If you are wanting a little load page as well try the link below

Cache dynamic images from array before page loads using javascript - Includes a demo

share|improve this answer

This approach is a little more elaborate. Here you store all preloaded images in a container, may be a div. And after you could show the images or move it within the DOM to the correct position.

function preloadImg(containerId, imgUrl, imageId) {
    var i = document.createElement('img'); // or new Image()
    i.id = imageId;
    i.onload = function() {
         var container = document.getElementById(containerId);
         container.appendChild(this);
    };
    i.src = imgUrl;
}

Try it here, I have also added few comments

share|improve this answer

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.