$.ajax({
type: "GET",
url: "/update.php",
success: function(data){
console.log(data);
}
});
Merhabalar.
<button type="submit">A B C D</button>
$.ajax({
type: "GET",
url: "update.php",
success: function(data){
console.log(data);
}
});
şeklinde bir lem yapınca,
TypeError $.ajax is not a function hatasını alıyorum. Ne yapmalıyım?