document.load

jQuery doesn't return proper body height on document load - Their bug or mine?

When I use $(document).ready(function() { var bodyHeight = $("body").height(); console.log(bodyHeight); }); I get a really wack number for body height. I then run $("body").height(); in the console and get the right height. Something seems fishy about the $(document).load doing this... Yes my CSS works fine and all, so is this ...