This is bizarre. I have a div. It is set with display: none.
If I use $('#id').show(); then $(document).height() is updated with the height of #id.
However, if I use $('#id').slideDown(); then $(document).height() remains unchanged.
If you would like to test it, try the following:
console.log("before",$(document).height());
$('#id').show(); //slideDown();
console.log("after",$(document).height());
Could a jQuery Master (jQM) explain this, please? :) [BTW, I am using Firefox 9.0.1.]