Contact Form 7のInstaPageなどのWordPressと連携している時のフォーム送信後のリダイレクト処理
2024.05.18
10
document.querySelectorAll('.wpcf7-form').forEach(function(form) {
form.addEventListener('submit', function(event) {
event.preventDefault();
var formData = new FormData(this);
fetch(this.action, {
method: 'POST',
body: formData,
})
.then(response => {
if(response.ok) {
window.location.href = 'https://xxx.com/thanks_page';
} else {
alert('フォームの送信に失敗しました。');
}
})
.catch(error => console.error('Error:', error));
});
});