id='edit-submitted-kolichestvo'
. Его клонировали?<input type="hidden" value="currentCount">
$('.pups').each(function() {
this.innerHTML = (parseInt(this.textContent) * 10)
.toLocaleString('ru-RU')
})
https://jsfiddle.net/s1trghxh/$('.pups').each(function() {
this.innerHTML = (parseInt(this.textContent) * 10)
.toString()
.split('')
.reverse()
.map((char, i) => char + (i % 3 ? '' : ' '))
.reverse()
.join('')
})
https://jsfiddle.net/12d8cfbq/1x.toString().replace(/\B(?=(\d{3})+(?!\d))/g, " ");
$('.pups').each(function() {
this.innerHTML -= -2;
});
// или
$('.pups').text((i, text) => Number(text) + 2);
// или
document.querySelectorAll('.pups').forEach(n => {
n.innerText = -~-~n.innerText;
});
// или
for (const n of document.getElementsByClassName('pups')) {
n.textContent = parseInt(n.textContent) + 2;
}
Такой вариант явно не правильный
(?:9|11)