Answers for "js get screen size"

3

javascript screen size

var w = window.innerWidth;
var h = window.innerHeight;
Posted by: Guest on March-13-2021
8

get screen width javascript

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

get the size of the screen javascript

window.screen.height;
window.screen.width;
Posted by: Guest on March-18-2020
3

js know size of screen

alert("Your screen resolution is: " + screen.width + "x" + screen.height)
Posted by: Guest on April-10-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

java script find screen size of device

// Size of browser viewport.
$(window).height();
$(window).width();

// Size of HTML document (same as pageHeight/pageWidth in screenshot).
$(document).height();
$(document).width();
Posted by: Guest on February-27-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language