Get server response with AJAX error? Get server response with AJAX error? jquery jquery

Get server response with AJAX error?


You should be getting in jQuery 'error' callback...http://api.jquery.com/jQuery.ajax/

 error: function(xhr, status, error) {    alert(xhr.responseText); }

(btw.. ur code?)