Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm looking for a quick and easy way to preload images with JavaScript. I'm using jQuery if that's important.

I saw this here (http://nettuts.com...):

function complexLoad(config, fileNames) {
  for (var x = 0; x < fileNames.length; x++) {
    $("<img>").attr({
      id: fileNames[x],
      src: config.imgDir + fileNames[x] + config.imgFormat,
      title: "The " + fileNames[x] + " nebula"
    }).appendTo("#" + config.imgContainer).css({ display: "none" });
  }
};

But, it looks a bit over-the-top for what I want!

I know there are jQuery plugins out there that do this but they all seem a bit big (in size); I just need a quick, easy and short way of preloading images!

share|improve this question
3  
$.each(arguments,function(){(new Image).src=this}); – David Aug 29 '12 at 16:03

18 Answers

up vote 516 down vote accepted

Quick and easy:

function preload(arrayOfImages) {
    $(arrayOfImages).each(function(){
        $('<img/>')[0].src = this;
        // Alternatively you could use:
        // (new Image()).src = this;
    });
}

// Usage:

preload([
    'img/imageName.jpg',
    'img/anotherOne.jpg',
    'img/blahblahblah.jpg'
]);

Or, if you want a jQuery plugin:

$.fn.preload = function() {
    this.each(function(){
        $('<img/>')[0].src = this;
    });
}

// Usage:

$(['img1.jpg','img2.jpg','img3.jpg']).preload();
share|improve this answer
2  
Whoa, that was quick, THANKS!!! Looks really good! – Mat Jan 24 '09 at 21:31
10  
Doesn't the image element need to be inserted into the DOM to ensure the browser caches it? – JoshNaro Aug 17 '10 at 15:33
4  
I believe $('<img />') just creates an image element in memory (see link). It looks like '$('<img src="' + this + '" />') would actually create the element within a hidden DIV, because it is more "complicated". However, I don't think this is needed for most browsers. – JoshNaro Feb 11 '11 at 15:30
32  
That is a weird way of writing a jQuery plugin. Why not $.preload(['img1.jpg', 'img2.jpg']) ? – alex Jan 17 '12 at 2:56
2  
Make sure to call this inside $(window).load(function(){/*preload here*/}); because that way all images in the document are loaded first, it's likely that they are needed first. – Jasper Kennis May 5 '12 at 15:35
show 12 more comments

Here's a tweaked version of the first response that actually loads the images into DOM and hides it by default.

function preload(arrayOfImages) {
    $(arrayOfImages).each(function () {
        $('<img />').attr('src',this).appendTo('body').css('display','none');
    });
}
share|improve this answer
13  
hide() is more terse than css('display', 'none'). – alex Sep 22 '11 at 2:32
1  
Great answer! This should be number one. – Django Reinhardt May 9 '12 at 12:30
This works fine when i try it in Firefox, but not with IE9. – Shadowxvii Aug 29 '12 at 14:12
1  
What's the advantage of inserting them into the DOM? – alex May 7 at 21:56

JP, After checking your solution, I was still having issues in Firefox where it wouldn't preload the images before moving along with loading the page. I discovered this by putting some sleep(5) in my server side script. I implemented the following solution based off yours which seems to solve this.

Basically I added a callback to your jQuery preload plugin, so that it gets called after all the images are properly loaded.

// Helper function, used below.
// Usage: ['img1.jpg','img2.jpg'].remove('img1.jpg');
Array.prototype.remove = function(element) {
  for (var i = 0; i < this.length; i++) {
    if (this[i] == element) { this.splice(i,1); }
  }
};

// Usage: $(['img1.jpg','img2.jpg']).preloadImages(function(){ ... });
// Callback function gets called after all images are preloaded
$.fn.preloadImages = function(callback) {
  checklist = this.toArray();
  this.each(function() {
    $('<img>').attr({ src: this }).load(function() {
      checklist.remove($(this).attr('src'));
      if (checklist.length == 0) { callback(); }
    });
  });
};

Out of interest, in my context, I'm using this as follows:

$.post('/submit_stuff', { id: 123 }, function(response) {
  $([response.imgsrc1, response.imgsrc2]).preloadImages(function(){
    // Update page with response data
  });
});

Hopefully this helps someone who comes to this page from Google (as I did) looking for a solution to preloading images on Ajax calls.

share|improve this answer
For those that are not interested in messing up the Array.prototype, instead, you can do: checklist = this.length And in the onload function: checklist-- Then: if (checklist == 0) callback(); – MiniGod Jul 15 '12 at 0:35
Everything would be fine however adding new or removing existing methods to an object you don't own is one of the worst practices in JavaScript. – Richards Sep 10 '12 at 7:17
Nice and quick, but this code will never fire the callback if one of the images is broken or unable to load. – SammyK Oct 30 '12 at 6:38
.attr({ src: this }).load(function() {...}) should be .load(function() {...}).attr({ src: this }) otherwise you will have caching problems. – Kevin B Mar 27 at 14:31

This one line jQuery code creates (and loads) a DOM element img without showing it:

$('<img src="img/1.jpg"/>');
share|improve this answer
This was all I needed to preload some rollovers sitewide...I only wrote in the 'hover state' images....thank you! – huzzah Apr 24 '12 at 20:25
3  
@huzzah - You may be better off just using sprites. Less http requests. :) – RegionalC Nov 16 '12 at 16:28

this jquery imageLoader plugin is just 1.39kb

usage:

$({}).imageLoader({
    images: [src1,src2,src3...],
    allcomplete:function(e,ui){
        //images are ready here
        $(document).ready(function(){
            //your code - site.fadeIn() or something like that
        });
    }
});

there are also other options like whether you want to load the images synchronously or asychronously and a complete event for each individual image.

share|improve this answer
chrs, fixed the link – alzclarke Apr 11 '12 at 9:00
1  
bad use of $(document).ready inside a callback :| – Aamir Afridi Feb 4 at 14:55
@AamirAfridi Why is that? – Ian Mar 5 at 19:31
@Ian because the document is already ready by the time the callback is fired. $(document).ready is used to make sure your DOM is loaded. When it comes to the callback, that mean that all images are loaded which means that yoru DOM is loaded so no need for document.ready inside a callback. – Aamir Afridi Mar 6 at 15:09
@AamirAfridi There is no guarantee that the document is ready in the callback...where are you inferring that from? There's nothing on the plugin's page that says the allcomplete callback is executed after the DOM is ready. There's a pretty good chance that the images finish loading after the DOM is ready, but there's no reason to assume. I don't know why you think callbacks are magical and are executed after the DOM is ready...can you explain where you're getting that from? Just because the images are loaded doesn't mean the DOM is ready – Ian Mar 6 at 15:47
show 3 more comments

Do the right thing, use JavaScript Image object. This function allows you to trigger a callback upon loading all pictures. However, note that it will never trigger a callback if at least one resource is not loaded. This can be easily fixed by implementing onerror callback and incrementing loaded value or handling the error.

var preload_pictures    = function(picture_urls, callback)
{
    var loaded  = 0;

    for(var i = 0, j = picture_urls.length; i < j; i++)
    {
        var img     = new Image();

        img.onload  = function()
        {                               
            if(++loaded == picture_urls.length && callback)
            {
                callback();
            }
        }

        img.src = picture_urls[i];
    }
};

preload_pictures(['http://foo/picture.bar', 'http://foo/picture.bar', 'http://foo/picture.bar', 'http://foo/picture.bar'], function(){
    console.log('a');
});

preload_pictures(['http://foo/picture.bar', 'http://foo/picture.bar', 'http://foo/picture.bar', 'http://foo/picture.bar'], function(){
    console.log('b');
});
share|improve this answer
Do the right thing, use JavaScript Image object. did you observe people doing the wrong thing in these answers? – alex May 7 at 21:58

you can load images in your html somewhere using css display:none; rule, then show them when you want with js or jquery

don't use js or jquery functions to preload is just a css rule Vs many lines of js to be executed

example: Html

<img src="someimg.png" class="hide" alt=""/>

Css:

.hide{
display:none;
}

jQuery:

//if want to show img 
$('.hide').show();
//if want to hide
$('.hide').hide();

Preloading images by jquery/javascript is not good cause images takes few milliseconds to load in page + you have milliseconds for the script to be parsed and executed, expecially then if they are big images, so hiding them in hml is better also for performance, cause image is really preloaded without beeing visible at all, until you show that!

share|improve this answer
2  
More info on this approach can be found here: perishablepress.com/… – gdelfino Apr 30 '12 at 0:00
2  
But you need to be aware that this technique has a major drawback: your page will not be completely loaded until all images are loaded. Depending on the number of images to preload and their size, this could take some time. Even worse, if the <img> tag does not specify a height and width some browsers might wait until the image is fetched before rendering the rest of the page. – Alex Feb 1 at 9:18
@Alex you anyway need to load the img, you are free to choose if to load them with html and avoid any kind of blinking and half loaded images , or if you want to get more speed going for a not stable solution – badbetonbreakbutbedbackbone Feb 1 at 9:46
also i really think creating html tags with javascript is unreadable at all just my 2 cents – badbetonbreakbutbedbackbone Feb 1 at 9:47

I have a small plugin that handles this.

It's called waitForImages and it can handle img elements or any element with a reference to an image in the CSS, e.g. div { background: url(img.png) }.

If you simply wanted to load all images, including ones referenced in the CSS, here is how you would do it :)

$('body').waitForImages({
    waitForAll: true,
    finished: function() {
       // All images have loaded.
    }  
});
share|improve this answer
1  
using this plugin now. It works a treat! Thanks. – James P McGrath Jan 17 '12 at 2:40
Using this plugin too, works fine. Just a note: you have to use finished instead of complete in params object. – manuelpedrera Mar 27 '12 at 9:34
@manuelpedrera Thanks, will update it now. – alex Mar 27 '12 at 10:09
Does this plugin cause images that haven't appeared on the page yet to be loaded, or only attach events to images which were already going to be loaded? – Dave Cameron May 29 '12 at 19:11
@DaveCameron It doesn't respect if the images are visible or not. You could easily fork it and make that change - just add :visible to the custom selector. – alex May 29 '12 at 23:44

Thanks for this! I'd liek to add a little riff on the J-P's answer - I don't know if this will help anyone, but this way you don't have to create an array of images, and you can preload all your large images if you name your thumbs correctly. This is handy because I have someone who is writing all the pages in html, and it ensures one less step for them to do - eliminating the need to create the image array, and another step where things could get screwed up.

$("img").each(function(){
    var imgsrc = $(this).attr('src');
    if(imgsrc.match('_th.jpg') || imgsrc.match('_home.jpg')){
      imgsrc = thumbToLarge(imgsrc);
      (new Image()).src = imgsrc;   
    }
});

Basically, for each image on the page it grabs the src of each image, if it matches certain criteria (is a thumb, or home page image) it changes the name(a basic string replace in the image src), then loads the images.

In my case the page was full of thumb images all named something like image_th.jpg, and all the corresponding large images are named image_lg.jpg. The thumb to large just replaces the _th.jpg with _lg.jpg and then preloads all the large images.

Hope this helps someone.

share|improve this answer

A quick, plugin-free way to preload images in jQuery and get a callback function is to create multiple img tags at once and count the responses, e.g.

function preload(files, cb) {
    var len = files.length;
    $(files.map(function(f) {
        return '<img src="'+f+'" />';
    }).join('')).load(function () {
        if(--len===0) {
            cb();
        }
    });
}

preload(["one.jpg", "two.png", "three.png"], function() {
    /* Code here is called once all files are loaded. */
});
​    ​

Note that if you want to support IE7, you'll need to use this slightly less pretty version (Which also works in other browsers):

function preload(files, cb) {
    var len = files.length;
    $($.map(files, function(f) {
        return '<img src="'+f+'" />';
    }).join('')).load(function () {
        if(--len===0) {
            cb();
        }
    });
}
share|improve this answer

If you want to preload images without JQuery look at preload images in Javascript.

share|improve this answer
Answers should contain everything relevant instead of just linking out. Can you place the relevant parts in your answer? – alex May 7 at 21:59
    jQuery.preloadImage=function(src,onSuccess,onError)
    {
        var img = new Image()
        img.src=src;
        var error=false;
        img.onerror=function(){
            error=true;
            if(onError)onError.call(img);
        }
        if(error==false)    
        setTimeout(function(){
            if(img.height>0&&img.width>0){ 
                if(onSuccess)onSuccess.call(img);
                return img;
            }   else {
                setTimeout(arguments.callee,5);
            }   
        },0);
        return img; 
    }

    jQuery.preloadImages=function(arrayOfImages){
        jQuery.each(arrayOfImages,function(){
            jQuery.preloadImage(this);
        })
    }
 // example   
    jQuery.preloadImage(
        'img/someimage.jpg',
        function(){
            /*complete
            this.width!=0 == true
            */
        },
        function(){
            /*error*/
        }
    )
share|improve this answer
2  
Welcome to Stack Overflow! Rather than only post a block of code, please explain why this code solves the problem posed. Without an explanation, this is not an answer. – Martijn Pieters Nov 19 '12 at 14:41

I use the following code:

$("#myImage").attr("src","img/spinner.gif");

var img = new Image();
$(img).load(function() {
    $("#myImage").attr("src",img.src);
});
img.src = "http://example.com/imageToPreload.jpg";
share|improve this answer
Bind to the load event first, then set the src. – Kevin B Mar 27 at 14:25
$.fn.preload = function (fn) {
    fn = fn || $.noop;
    var i = 0,
        len = this.length;

    return this.each(function () {
        (new Image()).src = this.src;
        i++;
        var perc = Math.round(100 * i / len);
        fn.call(this, perc);
    });
};

The usage is quite simple:

$('img').preload(function(perc) {
    console.log(perc);
});
share|improve this answer

This works for me even in IE9:

$('<img src="' + imgURL + '"/>').on('load', function(){ doOnLoadStuff(); });
share|improve this answer
1  
This will fail eventually due to caching, always bind the load event before setting the src attribute. – Kevin B Mar 27 at 14:27

I wanted to do this with a Google Maps API custom overlay. Their sample code simply uses JS to insert IMG elements and the image placeholder box is displayed until the image is loaded. I found an answer here that worked for me : http://stackoverflow.com/a/10863680/2095698 .

$('<img src="'+ imgPaht +'">').load(function() {
$(this).width(some).height(some).appendTo('#some_target');
});

This preloads an image as suggested before, and then uses the handler to append the img object after the img URL is loaded. jQuery's documentation warns that cached images don't work well with this eventing/handler code, but it's working for me in FireFox and Chrome, and I don't have to worry about IE.

share|improve this answer
This won't work well with cached images as you've found out. the workaround is to bind the load event first, then set the src attribute. – Kevin B Mar 27 at 14:24
function preload(imgs) {
$(imgs).each(function(index, value){
        $('<img />').attr('src',value).appendTo('body').css('display','none');
    });
}
.attr('src',value)
not
.attr('src',this)

just to point it out :)

share|improve this answer

All hipsters wrote there own version, so here's mine. It appends a hidden div to the body and fills it with the required images. I wrote it in Coffee Script. Here's the Coffee, the normal js, and the compressed js.

Coffee:

$.fn.preload = () ->
    domHolder = $( '<div></div>' ).css 'display', 'none'
    $( 'body' ).append domHolder
    this.each ( i, e) =>
        domHolder.append( $('<img/>').attr('src', e) )

Normal:

(function() {

  $.fn.preload = function() {
    var domHolder,
      _this = this;
    domHolder = $('<div></div>').css('display', 'none');
    $('body').append(domHolder);
    return this.each(function(i, e) {
      return domHolder.append($('<img/>').attr('src', e));
    });
  };

}).call(this);

Compressed:

function(){$.fn.preload=function(){var a,b=this;return a=$("<div></div>").css("display","none"),$("body").append(a),this.each(function(b,c){return a.append($("<img/>").attr("src",c))})}}.call(this);
share|improve this answer

Your Answer

 
discard

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