How can I get status code (200, 400, 404 etc.) at showResponse below:

$("#myform").validate({
  submitHandler: function(form) {
    var options = { 
       success: showResponse
    };
    $(form).ajaxSubmit(options);

    function showResponse(responseText, statusText, xhr, $form)  {
      if (responseText == 'ok') { // status code to be used instead
        ...
      } else {
        ...
      }
    }

    return false;
  }
});
link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

This is from the jQuery Ajax docs:

statusCode(added 1.5)Map Default: {}

A map of numeric HTTP codes and functions to be called when the response has the corresponding code. For example, the following will alert when the response status is a 404:

$.ajax({
  statusCode: {
    404: function() {
      alert('page not found');
    }
  }
});

If the request is successful, the status code functions take the same parameters as the success callback; if it results in an error, they take the same parameters as the error callback.

According to the jQuery form docs you can pass any of the standard $.ajax options to ajaxForm.

link|improve this answer
thanks. Should I add that statusCode: {...} to options list? – LA_ Feb 2 at 5:27
Yes, so the function defined will fire for the associated status code. In the above example when the Ajax request is a 404 it will alter the page not found message. So for success, you could define a callback for status code 200. Hope this helps! – Paul Feb 2 at 5:48
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.