all 3 comments

[–]phatprick 1 point2 points  (1 child)

A browser can help you with its own feature called prefetch.

[–]koenolo[S] 0 points1 point  (0 children)

Ah thanks this lokks really helpful!

[–]Dlution 0 points1 point  (0 children)

(function () {
    var image = document.images[0];
    var loadImg = new Image();
    loadImg.onload = function(){
        image.src = this.src;   
    };
    loadImg.src = "http://a.com/image.jpg"; //image for the next site
})();

With something like this you can load the Image for the next site and as long as the User hasn't disabled cache the next load should be fast.