In jQuery's ajax success callback, will textStatus ever not be "success"?

Viewed 21735

In the documentation there is a list of possible values that textStatus might be if the error() callback fires ("timeout", "error", "notmodified" and "parsererror") but nothing specified for the success() event.

Are there any other values besides "success" that could be passed to the success() callback? Is this documented anywhere?

4 Answers
Related