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
x
30
30
1
jQuery(document).ready(function ($) {
2
3
4
$(".animated_stats").each(function () {
5
_this = $(this);
6
_this.find('.counter').each(function () {
7
var $this = $(this),
8
countTo = $this.attr('data-count');
9
10
$({ countNum: $this.text() }).animate({
11
countNum: countTo
12
},
13
14
{
15
16
duration: 2000,
17
easing: 'linear',
18
step: function () {
19
$this.text(Math.floor(this.countNum));
20
},
21
complete: function () {
22
$this.text(this.countNum);
23
}
24
});
25
26
});
27
28
});
29
30
});
JavaScript
1
3
1
h1 {
2
color: black;
3
}
JavaScript
1
4
1
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
2
<div class="animated_stats">
3
<h1 class="counter" data-count="54000"></h1>
4
</div>
Advertisement
Answer
Try to use Number.prototype.toLocaleString().
Replace $this.text(this.countNum);
with $this.text(this.countNum.toLocaleString());
JavaScript
1
21
21
1
jQuery(document).ready(function ($) {
2
$(".animated_stats").each(function () {
3
_this = $(this);
4
_this.find('.counter').each(function () {
5
var $this = $(this),
6
countTo = $this.attr('data-count');
7
$({ countNum: $this.text() }).animate({
8
countNum: countTo
9
}, {
10
duration: 2000,
11
easing: 'linear',
12
step: function () {
13
$this.text(Math.floor(this.countNum).toLocaleString());
14
},
15
complete: function () {
16
$this.text(this.countNum.toLocaleString());
17
}
18
});
19
});
20
});
21
});
JavaScript
1
3
1
h1 {
2
color: black;
3
}
JavaScript
1
4
1
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
2
<div class="animated_stats">
3
<h1 class="counter" data-count="54000"></h1>
4
</div>