Answers for "get height of socument"

2

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

Code answers related to "Javascript"

Browse Popular Code Answers by Language