Search code examples
javascriptscrollautoscrollonscroll

how to add a counter updating when you scroll down a page


How can I add a counter updating when you scroll down a page? I like the effect that chartbeat has. What jQuery should I use to be able to achieve that?


Solution

  • There is scrollTop() function. You bind event handler to 'scroll' event on document and put the value in place you want.

    $(document).ready(function() {
      $(this).bind('scroll', function() {
    
        console.log($(this).scrollTop());
      });
    });