I'm trying to catch server errors (400, 404, 500) upon submitting my form via jQuery AJAX form plugin. (BTW I'm not trying to upload anything)
After reading carefully I found out that "statusCode" option of $.ajax object should be used in order to catch errors.
I have a two forms:
<form id=bookingForm2>
<input type="submit" value="submit">
</form>
<form enctype="multipart/form-data" id=bookingForm>
<input type="submit" value="submit">
</form>
<span id=submitReply></span>
and a function:
$(document).ready(function() {
var opt = {
type: 'POST',
url: 'postProcessor.php',
target: '#submitReply',
statusCode: {
400: function() {
alert('400');
},
404: function() {
alert('404');
}
}
};
$('#bookingForm2').ajaxForm(opt);
$('#bookingForm').ajaxForm(opt);
});
Here is the problem:
Form with enctype set to multipart/data never returns error code. Always success. I need to submit UTF-8 chars that is why I use it.