I would like to change the comma into an apostrophe in this div.
<div id="range" class="range-slider">
<div class="something">15,000.00</div>
</div>
So instead of 15,000.00 I would like to do 15'000.00
I cannot alter the HTML so I think I need to achieve this in JS, right?
Do I need to use the changeText
function?
Many thanks in advance.