why i got : ReferenceError: $ is not defined $.ajax({
- by user2922621
i need to call phpfile through ajax..
i tried \::;
<html>
<script type="text/javascript">
setInterval(function(){
test();
},3000);
function test(){
$.ajax({
type: "POST",
url: "GetMachineDetail.php",
data: "{}",
success: function(response){
alert("suceccess");}
});
}
Its simple javascript jquery calling.. but we got ajax not found eror, any solution please.