I've found on here how to do a counter, and I will be using it on a scrolling site.
I'm using the following code:
$(function() {
    function count($this){
        var current = parseInt($this.html(), 10);
        $this.html(++current);
        if(current !== $this.data('count')){
        setTimeout(function(){count($this)}, 10);
    }   
}
  $("span").each(function() {
  $(this).data('count', parseInt($(this).html(), 10));
  $(this).html('0');
  count($(this));
  });
});
I've tried to include the following code, but I'm not sure I'm adding it correctly:
      if ($('element').visible(true)) {
}
Heres a link to the Jfiddle that is currently working without the if statement. Any help would be appreciated.
 
     
     
    