vote up 0 vote down star
var heightOfDIV = $thisElement.css('height');
alert(heightOfDIV);

The above works as I expected it to work when I am using Firefox.

It returns me the div element that triggers the above code. I get the height as 393px.

however in IE7, i get auto.

This is causing me issues.

By the way, the above code is run in the afterExpand($thisElement) function of the expander jquery plugin.

Can anyone help me so that i can get the same result in IE7 as in Firefox?

Thank you.

flag

55% accept rate

1 Answer

vote up 2 vote down check

Use the .height() method instead:

var heightOfDiv = $thisElement.height();
link|flag
thanks greg. i am a newbie to this stuff. – keisimone Oct 23 at 14:53

Your Answer

Get an OpenID
or

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