Answers for "detect width and height of the page using javascript"

6

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
2

get full page height javascript

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 "detect width and height of the page using javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language