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.

link|improve this question
There is no any Upload involved! I know there are some problems with that. – Yan Nov 20 '11 at 5:26
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.