Ejemplo: javascript obtener la altura del cuerpo
var body = document.body,
html = document.documentElement;
var height = Math.max( body.scrollHeight, body.offsetHeight,
html.clientHeight, html.scrollHeight, html.offsetHeight );
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)