Some documents I can't get the height of the document (to position something absolutely at the very bottom). Additionally, a padding-bottom on seems to do nothing on these pages, but do on the pages where height will return. Case(s) in point:

http://fandango.com
http://paperbackswap.com

On Fandango
jQuery's $(document).height(); returns correct value
document.height returns 0
document.body.scrollHeight returns 0

On Paperback Swap:
jQuery's $(document).height(); TypeError: $(document) is null
document.height returns an incorrect value
document.body.scrollHeight returns an incorrect value

Note: I have browser level permissions, if there is some trick there.

link|improve this question

80% accept rate
1  
$(document) is null because that site doesn't have jQuery loaded... – 999 Jul 17 '09 at 21:57
Hm, could have sworn I checked something else to confirm jQuery was registered but it doesn't look like I did, HA! I thought firebug had jQuery packaged... hm, I guess I will check this out then if it's a solution. – Nic Jul 17 '09 at 22:04
feedback

4 Answers

up vote 13 down vote accepted

Document sizes are a browser compatibility nightmare because, although all browsers expose clientHeight and scrollHeight properties, they don't all agree how the values are calculated.

There used to be a complex best-practice formula around for how you tested for correct height/width. This involved using document.documentElement properties if available or falling back on document properties and so on.

The simplest way to get correct height is to get all height values found on document, or documentElement, and use the highest one. This is basically what jQuery does:

var body = document.body,
    html = document.documentElement;

var height = Math.max( body.scrollHeight, body.offsetHeight, 
                       html.clientHeight, html.scrollHeight, html.offsetHeight );

A quick test with Firebug + jQuery bookmarklet returns the correct height for both cited pages, and so does the code example.

link|improve this answer
rate this solution, because it works when you are using prototype library, with jQuery there is no such issue – se_pavel Sep 29 '09 at 18:28
1  
When working with iframes and jquery, because of this method of calculation, the iframe's document height will allways be at least the height of the iframe itselft. This is important to note when you want to reduce the iframe's height to match the content. You first have to reset the height of the iframe. – David Lay Nov 30 '09 at 13:35
Chromium (and possibly Chrome/webkit) suports document.height – Linus Unnebäck Sep 4 '10 at 21:03
feedback

Do you want to position something at the bottom of the document or the bottom of the screen?

To position at the bottom of the screen you can use

element {position: fixed;bottom:0;left:0}

link|improve this answer
If it matters position: fixed is not supported by IE 6 and lower. – jason Jul 17 '09 at 21:59
Sorry, should have been more clear. Position it at the bottom of the document. – Nic Jul 17 '09 at 22:00
feedback

I don't know about determining height just now, but you can use this to put something on the bottom:

<html>
<head>
<title>CSS bottom test</title>
<style>
.bottom {
  position: absolute;
  bottom: 1em;
  left: 1em;
}
</style>
</head>

<body>

<p>regular body stuff.</p>

<div class='bottom'>on the bottom</div>

</body>
</html>
link|improve this answer
Trust me, I have exhausted HTML and CSS resources on this one. Can't explain it but you will see the issues if you try this on those sites. – Nic Jul 17 '09 at 22:09
feedback

I lied, jQuery returns the correct value for both pages $(document).height();... why did I ever doubt it?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.