4
I have a page with several inputs all type text and with different names and different Ids.
In all of them there is the numerical value with point separating the decimals (10.00) and would like to change this point per comma (10.00) using Jquery.
Thus, when the page finished being loaded the input values would change the point per comma automatically.
Would anyone know how to write the function?
Thank you so much.
Hello. Can you explain better? the formatting you need is mask type? i.e., to exchange the input, or is after posting, to save or display the value elsewhere?
– Gê Bender
To really change it. On the page it is loaded with inputs and in its value it has numbers that contain points (.) and I want jquery to change these points by comma (,)
– Henrique Casagrande B
If you want to change when the page loads it seems to me that the best is to do it on the server side... is an option?
– Sergio
unfortunately not. It was my first bad option as the page is dynamic the object returned from the server (python work) is not supported to use a for to use an replace
– Henrique Casagrande B
Ok... then and you want to change only 1 time or whenever a new point value is typed?
– Sergio