jQuery(document).ready(function(){ jQuery("button.btnSend").click(function(){ var form = jQuery(this).closest('form'); jQuery.ajax({type:'POST', url: 'http://www.optykrubicon.pl/wp-content/themes/optykrubicon/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('
Dziękujemy! Twoja wiadomość została wysłana
'); else alert('Dziękujemy! Twoja wiadomość została wysłana.'); } else{ if(jQuery(form).find("#spanMessage").length) jQuery(form).find("#spanMessage").html('
Błąd! Coś poszło nie tak.
'); else alert('Somthing wrong!'); } }}); }); });