Questo campo è obbligatorio!
');
hasError = true;
}
}
if($.trim($(this).val()) == '' && $(this).hasClass('required') && typeof $(this).attr('name') != 'undefined') {
$('.listing-contact').height('auto');
var labelText = $(this).prev().prev('label').text();
$(this).parent().append('Questo campo è obbligatorio!
');
hasError = true;
} else if($(this).hasClass('email')) {
var emailReg = /^([\w-\.]+@([\w-]+\.)+[\w-]{2,4})?$/;
if(!emailReg.test(jQuery.trim($(this).val()))) {
$('.listing-contact').height('auto');
var labelText = $(this).prev().prev('label').text();
$(this).parent().append('Per favore inserisci un\'email valida!
');
hasError = true;
}
} else if($(this).hasClass('numbers') && $.trim($(this).val()) != '') {
var numReg = /[^0-9\.]/g;
if(numReg.test(jQuery.trim($(this).val().replace(/ /g,'')))) {
$('.listing-contact').height('auto');
var labelText = $(this).prev().prev('label').text();
$(this).parent().append('Please enter numbers only!
');
hasError = true;
}
}
else if($(this).hasClass('input-captcha')) {
if($('#captcha_code').val() == '') {
$('.listing-contact').height('auto');
var labelText = $(this).prev().prev('label').text();
$(this).parent().append('Questo campo è obbligatorio!
');
hasError = true;
} else {
var params = 'from_js=ok&captcha_code_js=' + $('#captcha_code').val();
$.ajax({
type: "POST",
url: "https://www.caseabetone.it/wp-content/themes/wpcasa/lib/framework/contact.php",
dataType: 'text' ,
data: params ,
async: false ,
success: function( res ){
errorAjaxCaptcha = res;
}
});
if(errorAjaxCaptcha Il codice di sicurezza inserito non è corretto.Grazie! La tua email è stata spedita con successo.