How do you get the screen size | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 10

How do you get the screen size

in html or css or javascript

4th Mar 2017, 8:17 PM
The Coding Sloth
The Coding Sloth - avatar
2 Answers
+ 1
if you are using jquery: $(window).height(); $(document).height(); $(window).width(); $(document).width(); javascript: function myFunction() { var w = window.innerWidth; var h = window.innerHeight; }
4th Mar 2017, 10:39 PM
sina jalalvandi
sina jalalvandi - avatar
0
100% 100vh innerHTML.height or .width, I think
4th Mar 2017, 10:17 PM
Michael Szczepanski
Michael Szczepanski - avatar