0

I have some troubles with getting the full height of the parent div in my webdesign. The container div is a div inside a div with a height of 100%.

<div id="container">
    <div id="navigation"></div>
    <div id="content"></div>
</div>

I have tried to read some of the other questions on stackoverflow and others, by i can't get it to work.

With CSS.

ThinkingStiff
  • 64,767
  • 30
  • 146
  • 239
Casperlarsen
  • 171
  • 1
  • 3
  • 10

1 Answers1

0
var height= jQuery('#container').outerHeight(true);
David Fow
  • 46
  • 6