check screen width in javascript code example
Example 1: javascript screen size
var w = window.innerWidth;
var h = window.innerHeight;
Example 2: get the size of the screen javascript
window.screen.height;
window.screen.width;
var w = window.innerWidth;
var h = window.innerHeight;
window.screen.height;
window.screen.width;