aboutsummaryrefslogtreecommitdiff
path: root/files/es/web/api/document/height/index.html
blob: 1bc2852c5857f593c81bef85b7ffa8f1b22b6c12 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
---
title: Document.height
slug: Web/API/Document/height
translation_of: Web/API/Document/height
---
<div>{{APIRef("DOM")}} {{Obsolete_header}}</div>

<div class="note">
<p><strong>Note:</strong> Comenzando en {{Gecko("6.0")}},<code> document.height </code>no es soportada. En lugar usar <code>document.body.clientHeight</code>. Ver {{domxref("element.clientHeight")}}.</p>
</div>

<h2 id="Summary">Summary</h2>

<p>Devuelve la altura del objeto {{domxref("document")}} . En la mayoría de los casos, esto equivale al elemento {{HTMLElement("body")}}  del documento actual.</p>

<h2 id="Syntax" name="Syntax">Syntax</h2>

<pre class="syntaxbox"><em>height_value</em> = document.height
</pre>

<h2 id="Example">Example</h2>

<pre class="brush: js">// alert document height
alert(document.height);
</pre>

<h2 id="Alternatives">Alternatives</h2>

<pre class="syntaxbox">document.body.clientHeight
document.documentElement.clientHeight
document.documentElement.scrollHeight
</pre>

<h2 id="Specification">Specification</h2>

<p>HTML5</p>

<h2 id="See_also">See also</h2>

<ul>
 <li>{{domxref("document.width")}}</li>
 <li>{{domxref("Element.clientHeight")}}</li>
 <li>{{domxref("Element.scrollHeight")}}</li>
</ul>