Can someone tell me why in the world I keep getting a parseerror in the console with the following code?
$.ajax({
url : "file.php",
data : data,
dataType : "json",
success : function (request) {
console.log("success");
},
error : function (request, error) {
console.log(error);
}
});
I have validated my JSON with jsonlint.com and it's Valid.
The Response Headers being returned in the Net tab of Firebug are:
Content-Length 19
Keep-Alive timeout=5, max=96
Connection Keep-Alive
Content-Type application/json
dataTypetotext? You should then be able toconsole.logthe return data.