Search results
18 sty 2018 · To get the current scroll position of the page you can use window.scrollY; If you want the scroll as a percentage of total page then you can do the math using the height of the body.
To get or set the scroll position of an element, you follow these steps: First, select the element using the selecting methods such as querySelector(). Second, access the scroll position of the element via the scrollLeft and scrollTop properties.
25 lut 2024 · One such case is calculating the scroll position of the current page or a specific element. Starting with the global Window object, we can use the Window.scrollX and Window.scrollY properties to get the scroll position of the current page.
Learn how to use JavaScript to get scroll position in web pages. Monitor user scrolling easily with code examples.
1 gru 2018 · Once you have the element, you can inspect its scrollLeft and scrollTop properties. The 0, 0 position is always found in the top left corner, so any scrolling is relative to that. Example: const container = document.querySelector('. container') container.scrollTop container.scrollLeft.
2 lut 2024 · What getScrollPosition does is that it takes the container of the content element, and it gets the position it has been scrolled from the left, and then it gets the position scrolled from the top. This tutorial introduces how to get the scrollbar position with JavaScript.
The solution for JavaScript is: var scrollPos = window.scrollY || window.scrollTop || document.getElementsByTagName("html")[0].scrollTop; Or if you use jQuery (this is more reliable, due cross-browser support): var scrollPos = $(window).scrollTop(); edited Jan 25, 2018 at 8:55. Orlandster.