vote up 0 vote down star

The properties: document.body.clientHeight, document.body.clientWidth return different values on IE7, IE8 and Firefox:

IE 8:
document.body.clientHeight : 704 document.body.clientWidth : 1148

IE 7:
document.body.clientHeight : 704 document.body.clientWidth : 1132

FireFox:
document.body.clientHeight : 620 document.body.clientWidth : 1152

Why does this discrepancy exits? Are there any equivalent properties that are consistent across different browsers (IE8, IE7, FireFox)

flag

57% accept rate

3 Answers

vote up 1 vote down check

This has to do with the browser's box model. Use something like jQuery or another JavaScript abstraction library to normalize the DOM model.

link|flag
What is jQuery equivalent for clientWidth and clientHeight? – Ngm May 7 at 9:36
jQuery $(document).height $(document).width also return variable values on different browsers – Ngm May 7 at 10:15
vote up 0 vote down

It may be caused by IE's box model bug. To fix this, you can use the Box Model Hack.

Steve

link|flag
vote up 0 vote down

Paul A is right about why the discrepancy exists but the solution offered by Ngm is wrong (in the sense of JQuery).

The equivalent of clientHeight and clientWidth in jquery (1.3) is

$(window).width(), $(window).height()
link|flag

Your Answer

Get an OpenID
or

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