Answers for "javascript get total window height"

0

get total height of page javascript

var _docHeight = (document.height !== undefined) ? document.height : document.body.offsetHeight;
Posted by: Guest on March-14-2021
0

get window height javascript

<p id="demo"></p>

<script>
document.getElementById("demo").innerHTML = 
"Screen width is " + screen.width;
</script>
Posted by: Guest on April-20-2020

Code answers related to "javascript get total window height"

Code answers related to "Javascript"

Browse Popular Code Answers by Language