Nothing found!
It looks like nothing was found here. Maybe try a search?
document.addEventListener('wpcf7submit', function (event) {
var formData = new FormData(event.target);
// AJAX iste�i g�nderme
jQuery.ajax({
url: ajaxurl, // WordPress'in AJAX URL'si
type: 'POST',
data: formData,
processData: false,
contentType: false,
success: function (response) {
console.log('API Response: ', response);
},
error: function (error) {
console.log('Error: ', error);
}
});
}, false);