home ~ socials ~ projects ~ rss

Get The Pixel Width And Height Of A Page In JavaScript

January 2025
const width = document.documentElement.clientWidth;
const height = document.documentElement.clientHeight;

This gets the width and height of the window minus scrollbars

end of line
Share link:
https://www.alanwsmith.com/en/2s/hk/mc/ad/?get-the-pixel-width-and-height-of-a-page-in-javascript