Evg Sevg, [26.04.21 23:59]
скажите, кто знает, как мне вызвать метод у класса на Php используя ajax?🙆🏻🙆🏻🙆🏻🙆🏻
Evg Sevg, [26.04.21 23:59]
$(document).ready(function(){
$("#mother_name").keyup(function(event){
event.preventDefault();
var mother = $("#mother_name").val();
$.ajax({
type: 'POST',
url: 'applications/child/child.php',
data: dataString,
dataType: 'json',
success: function(){
alert("pass");
},
error: function(){
alert("error");
}
});
});
});