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.

My company's new web layout depends on an image being 150px wide. The previous design required the images to be 125px tall. So all the images have different widths based on their width/height ratio. I put some javascript together to resize the images to fit in their space until our interns get around to sizing the images in photoshop. My temporary solution seems to work fine in everything but ie8, including ie6 of all things! Here's the code.

$('div.item > div.left > a > img').load(function(){
    var img = $(this);
    img.each(function(){
        var width = img.width();
        var height = 125;
        var ratio = width/height;
        if(width > 150){
            var newWidth = 150;
            var newHeight = newWidth/ratio;
            img.attr({width:newWidth, height:newHeight});
        }
    });
});

Any thoughts are greatly appreciated

share|improve this question
2  
not sure if this will help you, but sometimes I've had problems not specifying 'px' – Orbit Mar 3 '11 at 21:42

3 Answers

Change

img.attr({width:newWidth, height:newHeight});

to

img.css({width:newWidth+'px', height:newHeight+'px'});

and it should work as you wish.

share|improve this answer
i've tried attr, css, and both attr and css – heymrcarter Mar 4 '11 at 13:06

You should try to work on the image object itself

$('div.item > div.left > a > img').load(function(){
var img = $(this)[0];
img.each(function(){
    var width = img.width();
    var height = img.height();
    var ratio = width/height;
    if(width > 150){
        var newWidth = 150;
        var newHeight = newWidth/ratio;
        img.width(newWidth);
        img.height(newHeight));
    }
 });
});
share|improve this answer
var img = $(this)[0]; throws an error. 'Object doesn't support this action' Code:0. Any ideas? – heymrcarter Mar 7 '11 at 21:28

I've had the same problem.

I solved it with this :

$(window).load(function() {
....
});

It seems working in my web site.

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.