Apply this plugin to an element that contains a number and it will animate to the new number you specify.
HTML:
<div id="num">1234</div>
JS:
$("#num").animateNumbers(4321);
In this example the div #num will be animated from 1234 to 4321 using the defaults; one second, with number formatting, swing ease.
The other extreme is to set the options to something other than the defaults.
HTML:
<div id="num">1234</div>
JS:
$("#num").animateNumbers(4321, false, 2000, "linear");
In this example the div #num will be animated from 1234 to 4321 with these settings: two seconds, no number formatting, linear ease.
Most likely you will apply the plugin method to an element upon an event firing. Document ready and click are common choices.
This plugin uses the $.animate() method of jQuery to step a number towards the desired number. I got the idea from here:
I extended the example to what I have here to suit a project of mine. Decided to put it up on GitHub in case someone else finds it useful.
If the end result number is to have number formatting then it is suggested that the number created in HTML have number formatting as well.