Answers for "get viewport width and height javascript"

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
4

JS get viewport width

//getting the viewport dimensions
var width= Math.max(document.documentElement.clientWidth, window.innerWidth || 0);
var height = Math.max(document.documentElement.clientHeight, window.innerHeight || 0);
Posted by: Guest on July-31-2019
8

get screen width javascript

window.screen.width
//or just
screen.width
Posted by: Guest on May-20-2020

Code answers related to "get viewport width and height javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language