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