$(document).ready(function() {
// Берем все формы со страницы
$("form").submit(function() {
var th = $(this);
$.ajax({
type: "POST",
url: "mail.php",
data: th.serialize()
}).done(function() {
// Если все успешно
alert("Thank you!");
});
return false;
});
});
let form = document.querySelector('form')
form.addEventListener('submit', submitHandler)
function submitHandler(){
fetch("mail.php", {
method: "POST",
body: new FormData(form)
})
.then(response => response.json())
.then(function(json) { /* process your JSON further */ })
.catch(function(error) { console.log(error); });
})