I have seen that some browsers localize the input type=\"number\" notation of numbers.
input type=\"number\"
So now, in fields where my application displays longitude and la
Have you considered using Javascript for this?
$('input').val($('input').val().replace(',', '.'));