0
I want to format a dynamic input type range result, which gives me a dynamic value in a span. I need to format this value for currency. Ex: 1000 to 1,000
html
<span id="exibePercent">1000</span>
<input style="width:200px;" type="range" class="custom-range" min="1000" max="25000" id="price" value="1000" oninput="getElementById('exibePercent').innerHTML = this.value">