Answers for "get document height js"

1

javascript get body height

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

var height = Math.max( body.scrollHeight, body.offsetHeight, 
                       html.clientHeight, html.scrollHeight, html.offsetHeight );
Posted by: Guest on March-04-2020
0

get document height js

let body = document.body, html = document.documentElement, 
    height = Math.max( body.scrollHeight, body.offsetHeight,
                      html.clientHeight, html.scrollHeight, html.offsetHeight );
Posted by: Guest on August-08-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language