Answers for "how to get width and height of window"

3

how to get the height of window in javascript

//get screen height of the device by using
window.innerHeight
//get screen width of the device by using
window.innerWidth
Posted by: Guest on July-02-2020
0

get window height javascript

<p id="demo"></p>

<script>
document.getElementById("demo").innerHTML = 
"Screen width is " + screen.width;
</script>
Posted by: Guest on April-20-2020

Code answers related to "how to get width and height of window"

Code answers related to "Javascript"

Browse Popular Code Answers by Language