Hi, folks
In Brazil we have 2 phone number formats. With 9 and 8 digits. I see that phone field does not accept 8 digits.
How can I solve this?
Until use phone field, I used to have a script for it with text field input:
$('.mask-fone input[type="text"]').each(function() {
$(this).mask("(99) 9999-9999?9").on("focusout", function() {
var len = this.value.replace(/\D/g, '').length;
$(this).mask(len > 10 ? "(99) 99999-999?9" : "(99) 9999-9999?9");
});
});