Here the total height of all DIV'S are 900px, but the jqurey function returns the height of the body as 577px.(if i removed body css, its working). can any body have solution for this problem?
$j(function(){
alert($j("body").height());
})
html,body{
height:100%;
}
<div style="height:200px">header</div>
<div style="height:500px">content</div>
<div style="height:200px">footer</div>