jQuery Scroll Counter

by Viktor H. Morales

HTML

<div id="counter">0</div>

CSS

body {
  background-color: #666;
  min-height: 1024px;
}
#counter {
  position: fixed;
  bottom: 0;
  padding: 20px;
}

JavaScript

$(window).scroll(function(){
    $("#counter").html(($(window).scrollTop()));
});