jQuery().ready(function(){ jQuery('#subscribe').click(function(){ jQuery.post('http://beginedu.com/ajax-subscribe', {firstname: jQuery('#sub_firstname').val(), secondname: jQuery('#sub_secondname').val(), email: jQuery('#sub_email').val()}, function(data){ if(data==0) { jQuery('.subscription').html('

ПОДПИСКА ОФОРМЛЕНА

'); } else if(data==1) { alert("Ошибка. Введите фамилию"); } else if(data==2) { alert("Ошибка. Введите имя"); } else if(data==3) { alert("Ошибка. Введите верный емейл"); } else if(data==4) { alert("Ошибка. Имя или емейл уже используются"); } }); }); });