This finds actual physical screen size that does not change
But this finds what screen size you have shown at the present moment. you can change your screen size (reduce browser then try again and it will be different)
var w = window.innerWidth; var h = window.innerHeight; alert(w); alert(h);












