Open In App

HTML DOM Window scrollX property

Last Updated : 23 Jul, 2020
Improve
Improve
Like Article
Like
Save
Share
Report

The scrollX property of the Window interface returns the number of pixels that the document is currently scrolled horizontally in the current window. This value is subpixel precise in modern browsers, meaning that it isn’t necessarily a whole number. This is a read-only property.

Syntax:

var Scrx = window.scrollX

Return Value: The returned value is a double-precision floating-point value indicating the number of pixels the document is currently scrolled horizontally from the origin.

Example: This example shows how to get the precise number of pixels that are being scrolled
horizontally of the document using this property.

Here, We have attached a long horizontal text to exceed the frame to enable scroll horizontally.




<!DOCTYPE HTML> 
<html>  
<head>
    <meta charset="UTF-8">
    <title>window scrollX property</title>
</head>   
<body style="text-align:center;">
    GeeksforGeeksGeeksforGeeksGeeksforG
eeksGeeksforGeeksGeeksforGeeksGeeksforGeeks
GeeksforGeeksGeeksforGeeksGeeksforGeeksGeeks
forGeeksGeeksforGeeksGeeksforGeeksGeeksfor
GeeksGeeksforGeeksGeeksforGeeksGeeksforGeeks
GeeksforGeeksGeeksforGeeksGeeksforGeeksGeeks
forGeeksGeeksforGeeksGeeksforGeeksGeeksforGeeks
GeeksforGeeks
    <h1 style="color:green;">  
     GeeksforGeeks
    </h1
    <p
    HTML | window scrollX property
    </p>
  
    <button onclick = "Geeks()">
    Click Here
    </button>
    <p id="a"></p>
    <script
        var a = document.getElementById("a");
        function Geeks(){
            a.innerHTML =
 "scrollX is : " + window.scrollX;
}
  </script
</body>   
</html>


Output:

Before Clicking Button:

After Clicking Button: Hence, a horizontal scroll can be seen.

Supported Browsers:

  • Google Chrome
  • Safari
  • Firefox
  • Opera
  • Edge


Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads