You are on page 1of 1

$(document).

ready(function() {
setInterval(function(){
sato();
}, 2700);

function sato(){
var balance = '.account-info .item .content .price span';
var amount = 0.0000000039;
$({
Counter:parseFloat($(balance).text())
}).animate({
Counter: (parseFloat($(balance).text()) + amount).toFixed(10)
}, {
duration: 300,
easing: 'swing',
step: function () {
$(balance).text((this.Counter).toFixed(10));
}
});
}
});

You might also like