Answers for "javascript get width and height of screen"

1

js window dimensions

// better than using window.innerWidth / window.innerHeight 
// because of scrollbars
const client = {
      width: document.documentElement.clientWidth,
      height: document.documentElement.clientHeight
}
Posted by: Guest on November-09-2020
8

get screen width javascript

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

js know size of screen displayed

var win = window,
    doc = document,
    docElem = doc.documentElement,
    body = doc.getElementsByTagName('body')[0],
    x = win.innerWidth || docElem.clientWidth || body.clientWidth,
    y = win.innerHeight|| docElem.clientHeight|| body.clientHeight;
alert(x + ' × ' + y);
Posted by: Guest on April-10-2020
0

Get width of screen

public innerWidth: any;
ngOnInit() {
    this.innerWidth = window.innerWidth;
}
Posted by: Guest on July-01-2021

Code answers related to "javascript get width and height of screen"

Code answers related to "Javascript"

Browse Popular Code Answers by Language