Languages
[Edit]
EN

JavaScript - get browser window width

2 points
Created by:
Maison-Humphries
791

In this article, we're going to have a look at how to get the window width with JavaScript.

Quick solution:

// ONLINE-RUNNER:browser;

<!doctype html>
<html>
<body>
  <script>

    function printWidth() {
    	console.log(window.innerWidth);
    }
    
  </script>
  <button onclick="printWidth()">Print window width!</button>
</body>
</html>

Note: window.innerWidth returns internal window width - the area where web page is rendered.

Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.
Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join