$('.sepet-formu').on('submit', function (e) {
e.preventDefault();
$.ajax({
url: 'ajax_url_linkiniz',
data: $(this).serialize() + '¶metre=ekstra_paremetreniz_varsa',
type: 'POST',
beforeSend: function (xhr) {
},
error: function (request, status, error) {
console.log(request);
console.log(status);
console.log(error);
},
success: function (response) {
},
complete: function () {
},
});
});
Şu şekilde bir ajax daha mantıklı olur.