I have the following jQuery hosted in an IIS directory:
$(function () {
$.ajax({
"url": "sample.json",
"type": "get",
"dataType": "json",
"success": function(data) {
console.log(data);
},
"error": function(jqXHR, status, error) {
console.log("status:",status, "error", error);
}
}) ;
});
When I browse the html file, I get this in the JS console:
GET http://localhost/Ajax/sample.json 404 (Not Found) jquery-1.9.0.min.js:3
status: error error Not Found app.js:18
Its right in the directory. When I use /sample.json, I get:
GET http://localhost/sample.json 404 (Not Found) jquery-1.9.0.min.js:3
status: error error Not Found
How do I get it to find the local file and execute the ajax call?
