VOOZH about

URL: https://www.geeksforgeeks.org/javascript/html-dom-window-scrolly-property/

⇱ HTML DOM Window scrollY Property - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

HTML DOM Window scrollY Property

Last Updated : 13 Aug, 2020

The scrollY property of the Window interface returns the number of pixels that the document is currently scrolled vertically 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 Scry = window.scrollY

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

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

Here, we have attached a long vertical heading to exceed the frame to enable scroll vertically.

Output:

Supported Browsers: 

  • Google Chrome
  • Safari
  • Firefox
  • Opera
  • Edge
Comment
Article Tags:
Article Tags: