I found this https://github.com/inorganik/CountUp.js
As my knowledge of javascript is very weak, i am asking for your help to store the counter result local, then display it on the user`s browser...
var options = {
useEasing : true,
useGrouping : true,
separator : ',',
decimal : '.',
prefix : '',
suffix : ''
};
var demo = new CountUp("myTargetElement", 0, 9999999, 0, 998.9, options);
demo.start();
Like this, it will count forever ( i think )
Many Thanks!