Toussaint CARLOTTI

Results 1 comments of Toussaint CARLOTTI

``` new Cleave('.input-currency', { numeral: true, delimiter: ' ', numeralThousandsGroupStyle: 'thousand', numeralDecimalScale: 2, numeralDecimalMark: ',', }); document.querySelector('.input-currency').addEventListener('keydown', function (e) { if (e.key === '.') { e.preventDefault(); e.target.value += ','; }...