フォームの詳細を icontact ページに送信する必要がありますが、どうすればよいですか
ここに私のコードがあります
<script>
function submitForm() {
$.ajax({type:'POST', url: 'https://app.icontact.com/icp/signup.php', data:$('#ContactForm').serialize(), success: function(response) {
$('#ContactForm').find('.form_result').html(response);
}});
return false;
}
</script>
<script>
function submitForm() {
$.ajax({type:'POST', url: 'zohoprocess.php', data:$('#ContactForm').serialize(), success: function(response) {
$('#ContactForm').find('.form_result').html(response);
}});
return false;
}
</script>