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

I want to set a background image on the body tag, then run some code - like this:

$('body').css('background-image','http://picture.de/image.png').load(function() {
    alert('Background image done loading');
    // This doesn't work
});

How can I make sure the background image is fully loaded?

share|improve this question
3  
Just assign the same URL to Image() object which does have onload event. – Shadow Wizard Feb 20 '11 at 15:43
1  
make sure to wrap the css url in url() – bluescrubbie Oct 17 '12 at 18:55

4 Answers

up vote 62 down vote accepted

try this:

$('<img/>').attr('src', 'http://picture.de/image.png').load(function() {
   $('body').css('background-image', 'url(http://picture.de/image.png)');
});
share|improve this answer
Seems like the image would be loaded twice for no reason. – gAMBOOKa Feb 20 '11 at 16:42
7  
@gAMBOOKa They are loaded once because they stay in browser memory. This is the same, when you put hidden images in top of your page and then set it in CSS — so images are start downloading before css file — it's called preloading. – jcubic Feb 20 '11 at 17:05
I am not too sure, but I think you're referring to cache. I don't think there's such a thing as browser memory where assets are stored. If you're referring to cache, remember that you're adding an extra HTTP request and all clients might not have cache enabled. – gAMBOOKa Feb 20 '11 at 17:09
3  
Enter this in any page that have jquery: javascript:void($('<img/>').attr('src', 'http://farm6.static.flickr.com/5049/5220175127_5693faf952.jpg').load(function() { $('html').css('background-image', 'url(http://farm6.static.flickr.com/5049/5220175127_5693faf952.jpg)'); })) and check HTTP requests in Firebug. If I have opened flicker page with this image opened in another tab it don't do any HTTP requests just show this picture instantly. and when I clear the cache and run it there was one request. – jcubic Feb 20 '11 at 21:40
How would that work for a responsive site? Would you have to load all images at once? – jonasll Mar 30 at 17:05

There are no JS callbacks for CSS assets.

share|improve this answer
Thanks for the fast answer. Any ideas for a workaround solution? – Peter Feb 20 '11 at 15:41

Something like this:

var $div = $('div'),
  bg = $div.css('background-image');
  if (bg) {
    var src = bg.replace(/(^url\()|(\)$|[\"\'])/g, ''),
      $img = $('<img>').attr('src', src).on('load', function() {
        // do something, maybe:
        $div.fadeIn();
      });
  }
});
share|improve this answer
hello ... this seems to work, though I set the bg.replace to bg.replace( ... , my_src ). But my question is: once the $('<img>') loads, what exactly happens with that <img> ... I mean it's not actually real - it's just a dummy placeholder, right? – dsdsdsdsd May 17 at 23:44

I have a jQuery plugin called waitForImages that can detect when background images have downloaded.

$('body')
  .css('background-image','url(http://picture.de/image.png)')
  .waitForImages(function() {
    alert('Background image done loading');
    // This *does* work
  }, $.noop, true);
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.