$(document).ready(function(){
function getDocumentHeight()
{
// What's the page height?
var height = $('#mainbody').height();
alert(height);
...
getDocumentHeight();
jQuery keeps alerting "null" for the height of my #mainbody div. i don't get why, it should at least be 500px or so.
thank you.
id="#mainbody", with the#in it do you? – Nick Craver♦ Sep 9 '10 at 21:49