jQuery(document).ready(function(){ jQuery("button.btnSend").click(function(){ var form = jQuery(this).closest('form'); jQuery.ajax({type:'POST', url: 'https://www.alfascaffalature.it/wordpress/wp-content/themes/florida-wp/inc/contactus/contact2.php', data:jQuery(form).serialize(), success: function(response) { if(parseInt(response)>0) { if(jQuery(form).find("#spanMessage").length) jQuery(form).find("#spanMessage").html('
Perfetto! Il tuo messaggio è stato inviato.
'); else alert('Perfetto! Il tuo messaggio è stato inviato.'); } else{ if(jQuery(form).find("#spanMessage").length) jQuery(form).find("#spanMessage").html('
Errore! Qualcosa è andato storto
'); else alert('Somthing wrong!'); } }}); }); });