vote up 0 vote down star

This works in Firefox/Safari but not on IE

var h = parseInt($('#elementWhichHeightCanChange').css('height'));
alert(h);

on IE it returns NaN. Anyone know how to get div height depending on its content on IE?

I want to resize this popup window to fit the content, which currently works only on Firefox.

Thank you in advance.

flag

2 Answers

vote up 3 vote down check

I have tried this, but it might work.

var h = $('#elementWhichHeightCanChange').height();
alert(h);

Use the height function or outerHeight instead of css height. You also won't need the parseInt() because this will return an integer, unlike css height.

link|flag
vote up 2 vote down

Try this

var h = $('#elementWhichHeightCanChange').outerHeight();
alert(h);

This will include paddings and borders - things you probably want to take into account.

link|flag

Your Answer

Get an OpenID
or

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