jQuery(document).ready(function(){ jQuery("button.btnSend").click(function(){ var form = jQuery(this).closest('form'); jQuery.ajax({type:'POST', url: 'https://ideip.es/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('
¡Bien hecho! Su mensaje ha sido enviado.
'); else alert('Bien hecho! Tu mensaje ha sido enviado'); } else{ if(jQuery(form).find("#spanMessage").length) jQuery(form).find("#spanMessage").html('
¡Error! Algo está mal
'); else alert('Somthing wrong!'); } }}); }); });