Answers for "how to get current screen size in javascript"

3

javascript screen size

var w = window.innerWidth;
var h = window.innerHeight;
Posted by: Guest on March-13-2021
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

Code answers related to "how to get current screen size in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language