این کدهای من داخل فایل جاوا اسکریپت هست اما نمیدونم چرا فرم ارسال نمیشه
let j = jQuery.noConflict();
j(document).ready(function() {
j('form').on('submit' , (e) => {
e.preventDefault();
let nameInput = j('#nameInput').val();
let emailInput = j('#emailInput').val();
let telInput = j('#telInput').val();
let csrf = j(this).data('csrf');
j.ajax({
url : '../../public/index.php',
type: 'POST',
data : {
action: 'userLogin',
name: nameInput,
email: emailInput,
phone: telInput,
csrf: csrf
},
beforeSend: function(){
j('#form_submit').text('در حال انجام');
},
success: function (response){},
error: function (error){
alert(' شما با شکست روبه رو شدید ');
},
complete: function(){
j('#form_submit').text('ارسال شد')
}
})
})
})