//get screen height of the device by using window.innerHeight //get screen width of the device by using window.innerWidth
<p id="demo"></p> <script> document.getElementById("demo").innerHTML = "Screen width is " + screen.width; </script>