I have an $.ajax() request with the dataType set to \"json.\" The server is returning JSON with the correct mime type of \"application/json.\" And yet the responseText in my
Try
$.ajaxSetup({ "error": function(jqXHR, status, thrownError) { alert('error'); console.log(jqXHR.responseJSON); } });