Управление DOM с помощью JavaScript в современных браузерах и IE 11+
Получить высоту документа
// Full height, including the scroll part
const fullHeight = Math.max(
document.body.scrollHeight, document.documentElement.scrollHeight,
document.body.offsetHeight, document.documentElement.offsetHeight,
document.body.clientHeight, document.documentElement.clientHeight
);
Получить ширину документа
// Full width, including the scroll part
const fullWidth = Math.max(
document.body.scrollWidth, document.documentElement.scrollWidth,
document.body.offsetWidth, document.documentElement.offsetWidth,
document.body.clientWidth, document.documentElement.clientWidth
);