Snippets Collections
//html
 <div class="scroll-indicator">Scroll Position: <span id="scrollPos">0</span></div> 

   
   
 //js
const scrollPosElement = document.getElementById('scrollPos');

window.addEventListener('scroll', function() {
            const scrollTop = document.documentElement.scrollTop || window.pageYOffset;
            scrollPosElement.textContent = scrollTop;
        });
star

Thu Jul 04 2024 22:32:36 GMT+0000 (Coordinated Universal Time)

#scroll #scrollposition #pageoffset

Save snippets that work with our extensions

Available in the Chrome Web Store Get Firefox Add-on Get VS Code extension