---
title: "how to get the scroll height and  width in javascript?"  
description: "how to get the scroll height and  width in javascript?"  
author: "Amit Singh"  
published: 2011-01-01  
updated: 2020-09-23  
canonical: https://www.mindstick.com/interview/310/how-to-get-the-scroll-height-and-width-in-javascript  
category: "javascript"  
tags: ["javascript"]  
reading_time: 1 minute  

---

# how to get the scroll height and  width in javascript?

we get the scroll Width in javascript\
Width : window.pageXOffset ||\
document.body.scrollLeft ||\
document.documentElement.scrollLeft;\
we get the scroll Height in javascript\
Height: window.pageYOffset ||\
document.body.scrollTop ||\
document.documentElement.scrollTop;\

## Answers

### Answer by Amit Singh

we get the scroll Width in javascript\
Width : window.pageXOffset ||\
document.body.scrollLeft ||\
document.documentElement.scrollLeft;\
we get the scroll Height in javascript\
Height: window.pageYOffset ||\
document.body.scrollTop ||\
document.documentElement.scrollTop;\


---

Original Source: https://www.mindstick.com/interview/310/how-to-get-the-scroll-height-and-width-in-javascript

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
