It is hard to give this problem a simple title but I hope someone can help me.. Please have a look at this jsfiddle - http://jsfiddle.net/mrmartineau/AaeJY/ - in both Firefox & Chrome. The image is styled with a max-width: 80% which should make it fluid but I have found a bug in Firefox which registers the max-width value in pixels rather than the, correct, percentage.

Now, I discovered this while trying the get the max-width value using jQuery: $('img').css('maxWidth');

Is this a bug or the correct result? Is there something else that I can do to get the real max-width value using jQuery?

link|improve this question

55% accept rate
feedback

1 Answer

I think this all depends on how the jQuery looks for the max-width property.

If you use the getComputedStyle in Javascript it should return you a value of pixels, with the exception of a bug in Chrome and IE using a different Javascript call altogether. In other words, getting pixels is the expected result.

If you're looking to get the result after it changes try wrapping that call in an onWindowResize.

link|improve this answer
Thanks Matthew, but I would really like to get back the same value (in this case %) as is declared in the CSS. I think your window resize idea is the solution. Cheers man! – Zander Feb 14 at 8:11
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.