Skip to content
Advertisement

How to add a decimal to jQuery animated counter?

I have an animated jquery counter that’s working fine, but I want to change the end number to a decimal number. So at the moment it’s counting up to 54000, but I want it to give me 54,000. How do I do this?

jsfiddle is here

JavaScript
JavaScript
JavaScript

Advertisement

Answer

Try to use Number.prototype.toLocaleString(). Replace $this.text(this.countNum); with $this.text(this.countNum.toLocaleString());

JavaScript
JavaScript
JavaScript
User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement