0
Hello. I’m behind a coin mask made in jquery, but that applies directly to a span html tag, with a specific class. What else I have found in my searches are input masks for forms, which is not the case. I ended up getting a little confused, because my knowledge of JS is not much.
Then exemplifying a HTML
<li>
<span class="mylabel">Valor do Aluguel:</span>
<span class="myvalue">25000000</span>
</li>
In the example the script would transform this type of result 25000000 into -> 25.0000.00 That is, force the standard currency format from here in Brazil in a chosen field.
Logically following the same pattern for other types of values:
60050 -> 600,50
110000 -> 1.100,00
250035085 -> 2.500.350,85
etc..
Possible? How would?
Thank you in advance.
Maskmoney is similar to the use of maskedinput examples using Mask money
– Eduardo