html {
overflow: hidden;
}
.body{
margin: 10px;
padding: 10px;
background-color: #fff;
box-shadow: 5px 5px #CCCCCC;
width: auto;
height: calc(100vh - 40px);
border: 1px solid #f00;
bottom: 40px;
}
.body{
margin: 10px;
padding: 10px;
background-color: #fff;
box-shadow: 5px 5px #CCCCCC;
width: auto;
height: calc(100vh - 40px);
border: 1px solid #f00;
bottom: 40px;
overflow: hidden;
}
$("form").submit(function() {
var th = $(this);
$.ajax({
type: "POST",
url: "mail.php", // ЗДЕСЬ ОБРАБОТЧИК УКАЗЫВАТЬ
data: th.serialize()
}).done(function() {
alert("Заявка отправлена!");
setTimeout(function() {
// Done Functions
th.trigger("reset");
}, 1000);
});
return false;
});