$('.email-form').submit(function (e) {
e.preventDefault();
var msg = $(this).serialize();
$.ajax({
type: 'POST',
url: 'send.php',
data: msg,
success: function(data) {
$('.results').html(data);
window.setTimeout(function () {
$('.results').hide();
$('.modal').modal('hide');
}, 5000);
},
error: function(xhr, str){
alert('Возникла ошибка: ' + xhr.responseCode);
}
});
});
<input id="name" name="name" />
<input id="email" name="email" />
$('.email-form').submit(function (e) {
if ($("#name").val().length !== 0 && $("#email").val().length !== 0) {
e.preventDefault();
var msg = $(this).serialize();
$.ajax({
type: 'POST',
url: 'send.php',
data: msg,
success: function(data) {
$('.results').html(data);
window.setTimeout(function () {
$('.results').hide();
$('.modal').modal('hide');
}, 5000);
},
error: function(xhr, str){
alert('Возникла ошибка: ' + xhr.responseCode);
}
});
}
});