I have a jQuery AJAX post request that is unexpectedly triggering the error callback instead of success. One random suspicion I have is the 302 status code it is receiving, although that may be wrong.
I looked at the documentation, but I feel like one thing is a bit unclear: What is jQuery's definition of a successful request?
if ( status >= 200 && status < 300 || status === 304 )) from the jQuery source. But there's more to it than just the status code, as @KevinB stated previously. – James Allardice Jun 22 '12 at 15:23