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!
$("#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