Answers for "js function to find the height of page"

3

how to get the height of window in javascript

//get screen height of the device by using
window.innerHeight
//get screen width of the device by using
window.innerWidth
Posted by: Guest on July-02-2020
0

get total height of page javascript

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

Code answers related to "js function to find the height of page"

Code answers related to "Javascript"

Browse Popular Code Answers by Language