Descubra o Bem-Estar em Alto Padrão!
Aproveite as condições especiais de pré-lançamento e viva o melhor da vida no estilo Vivart Jeri
Entre em contato
jQuery(document).ready(function($) {
// Validate phone field when user clicks outside the field (on blur)
$('input[name="form_fields[whatsapp]"]').on('blur', function() {
const creciInput = $(this);
const creciError = creciInput.closest('.elementor-field-group').find('.elementor-message');
if (creciInput.val().length < 15) {
if (creciError.length === 0) {
creciInput.closest('.elementor-field-group').append('
O whatsapp precisa ter 11 dígitos Sendo DDD+TELEFONE.
');
} else {
creciError.text('O whatsapp precisa ter 11 dígitos Sendo DDD+TELEFONE.');
}
} else {
creciError.remove();
}
});