vote up 0 vote down star

By default, a DIV's height is determined by its contents.

But, I override that and explicitly set a height with jQuery:

$('div#someDiv').height(someNumberOfPixels);

How can I reverse that? I want to remove the height style and to make it go back to it's automatic/natural height?

flag

64% accept rate
I can't get this to work either. It seems that after you set the height of the div to something specific (like 300px or whatever), you can't set the height back to auto. Might be a jQuery bug. – Brandon Montgomery Nov 6 at 15:09

4 Answers

vote up 0 vote down
$('div#someDiv').attr("height","");
link|flag
vote up 0 vote down

maybe something like

$('div#someDiv').css("height", "auto");
link|flag
vote up 1 vote down
$('div#someDiv').removeAttr("height");
link|flag
vote up -1 vote down

To keep the way you did it before, just try

$("#someDiv").height();

link|flag
-1 this returns the current height of someDiv, it won't set it – Brandon Montgomery Nov 6 at 14:43

Your Answer

Get an OpenID
or

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