I am sending an error response to my jQuery. However, I can not get the response text (in the example below this would be Gone to the beach)
The onl
This will allow you to see the whole response not just the "responseText" value
error: function(xhr, status, error) { var acc = [] $.each(xhr, function(index, value) { acc.push(index + ': ' + value); }); alert(JSON.stringify(acc)); }