Supplying a Radix

Supplying a Radix

PARSEINT REQUIRES A RADIX: Please make sure you are supplying a radix for all parseInt().

How can i solve this with this code? please help me...

// Fun Facts
function count($this){
var current = parseInt($this.html(), 10);
current = current + 1; /* Where 50 is increment */
$this.html(++current);
if(current > $this.data('count')){
$this.html($this.data('count'));
} else {    
setTimeout(function(){count($this)}, 50);
}
}        
$(".stat-count").each(function() {
 $(this).data('count', parseInt($(this).html(), 10));
 $(this).html('0');
 count($(this));
});