jQuery(document).ready(function(){ jQuery("button#newsbtn").click(function(){ var form = jQuery(this).closest('form'); jQuery.ajax({type:'POST', url: 'https://www.aaadubai.com/wp-content/themes/florida-wp/inc/contactus/contact2.php', data:jQuery(form).serialize(), success: function(response) { if(response=='success') { jQuery('#newsletter_form').submit(); } else{ if(response=='Required field.') { if(jQuery(form).find("#cmnamelabel").length) { jQuery(form).find("#fieldName").addClass( "error" ); jQuery(form).find("#fieldEmail").removeClass( "error" ); jQuery(form).find("#cmnamelabel").html(response); jQuery(form).find("#cmemaillabel").html(""); } } else { if(jQuery(form).find("#cmemaillabel").length) { jQuery(form).find("#fieldEmail").addClass( "error" ); jQuery(form).find("#fieldName").removeClass( "error" ); jQuery(form).find("#cmemaillabel").html(response); jQuery(form).find("#cmnamelabel").html(""); } } } }}); }); jQuery("button.btnSendTest").click(function(){ var form = jQuery(this).closest('form'); jQuery.ajax({type:'POST', url: 'https://www.aaadubai.com/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('
Well done! Your message has been sent.
'); else alert('Well done! Your message has been sent'); } else{ if(jQuery(form).find("#spanMessage").length) jQuery(form).find("#spanMessage").html('
Error! Somthing Wrong
'); else alert('Somthing wrong!'); } }}); }); });