--- title: Document.height slug: Web/API/Document/height translation_of: Web/API/Document/height ---
Note: Comenzando en {{Gecko("6.0")}}, document.height
no es soportada. En lugar usar document.body.clientHeight
. Ver {{domxref("element.clientHeight")}}.
Devuelve la altura del objeto {{domxref("document")}} . En la mayoría de los casos, esto equivale al elemento {{HTMLElement("body")}} del documento actual.
height_value = document.height
// alert document height alert(document.height);
document.body.clientHeight document.documentElement.clientHeight document.documentElement.scrollHeight
HTML5