$('.email-form').submit(function (e) {
e.preventDefault();
var msg = $(this).serialize();
if(msg.name == ''){
alert('Поля пустые');
} else {
$.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);
}
});
}
});
<svg width="1915" height="809" class="test" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
<g>
<title>Layer 1</title>
<path d="m647.68071,442.16045c-288.087,-12.00231 -425.686,35.79563 -643.822,183.24788l0,-619.37037l1877.49,0c0,0 84.4,0 0,114.00396c-84.41,114.00396 -263.28,96.54905 -439.2,190.51649c-253.82,103.9478 -425.13,135.49129 -794.468,131.60204z" fill="#070D10" id="svg_1"/>
</g>
</svg>
.test {
position: absolute;
width: 100%;
height: 100%;
top: 0;
}