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.

So, basically I am making my own lightbox and I need the containing div to automatically resize to the image that gets loaded (I also need the width so I can re-center the image). By using the .load() method, I can successfully get the width and height of the image, except in IE (7/8). I instead just get 0s for both. If I click on the same image again, everything works. If I click on the same image a third time, I get 0s again.

Here is some of my code:

$('#media')
    .children()
        .hide()
        .end()
    .find('img')
        .remove()
        .end()
    .append('<img src="'+photo_url+'" />')
;

$('#media img').load(function() {
    alert('w ' + this.width + ' h '+this.height); 
    $('#media').css( {'width': this.width+'px', 'height': this.height+'px'} );
    LaunchMediaOverlay(350);
});

#media is the containing div that I need to resize according to what image is loaded inside of it. My idea is to change the CSS before it shown. Then display it via LaunchMediaOverlay().

Thanks!

share|improve this question
Probably won't fix your problem, but you can skip adding 'px' in your css() function. jQuery assumes px if there is no label. – Surreal Dreams Feb 2 '11 at 17:41
Always cache your jQuery result sets. Using $("#media") forces jQuery to search the entire DOM tree each time you want to access it, so store it in a variable: var $media = $("media");. – afEkenholm Feb 2 '11 at 17:53
Be careful using ".load()"; the documentation says: It is possible that the load event will not be triggered if the image is loaded from the browser cache. To account for this possibility, we can use a special load event that fires immediately if the image is ready. event.special.load is currently available as a plugin. – Neil Feb 2 '11 at 17:57

2 Answers

up vote 2 down vote accepted

It could be that the image is cached.

This is a good response:

jQuery callback on image load (even when the image is cached)

share|improve this answer
Ah, sweet! That worked perfectly. – John Feb 2 '11 at 18:10
Thanks to Nick Craver! This is a good solution. – ScottE Feb 2 '11 at 19:03

use $(this).width() and $(this).height() for jquery width/height calculation.

To calculate the dimensions of elements within a hidden container follow this tactic using visibility:hidden.

share|improve this answer
You could also use .width() and .height() to set the properties instead of .css(). I'm not sure if one method is advantageous over the other. – Surreal Dreams Feb 2 '11 at 17:44
Well, I tried that and now I am getting 0s for chrome and IE. If I click a second time, I get the values, etc. Seems like it just made it worse. – John Feb 2 '11 at 17:48
@John - it sounds like the #media is hidden when you are trying to calculate the width. This will indeed render the inner elements with no dimensions. – Josiah Ruddell Feb 2 '11 at 17:52
Like I said, it works in all browsers except IE. Do you think if I display #media, then load the image (but keep it hidden), get the width/height of image, resize #media, then display the image, it will work in all browsers? – John Feb 2 '11 at 17:58

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.