Can you help me?
I have this input number that must accept values in decimal. People fill in the decimal point (.) And not with a comma (,)
In all browsers it works just fine, EXCEPT in firefox which is our default browser. (Firefox is only allowing (,) and not (.))
I looked in several sites (including here in stackoverflow) and several methods, the only way it worked was to leave the input as text and apply a mask with js converting (.) into (,) thus avoiding doubt or error noob of the user.
How can I allow firefox to accept (.) the input number? Anybody know? Thanks!