According to the doc, the 'error' ajax event gets passed the XMLHttpRequest object, 'success' does not.
http://docs.jquery.com/Ajax/jQuery.ajax
That's a shame, because I would like to be able to access the HTTP status code in success. I am doing so successfully with error.
error: function(data){
alert(data.status)
}
Any leads would be great.
Thank you.