4

there is no problem when I don't select any file for upload, when I just fill the other inputs than post form, It's working. but when I choose a file for image upload than post it, I'm getting this error, but when I look folder, I see that file uploaded. but javascript failed.

jquery.form.js:357 Uncaught TypeError: 
Object function (a,b){return new d.fn.init(a,b,g)} has no method 'handleError'

here is my code,

<form id="employeeaddform" class = "classform" enctype="multipart/form-data" action="inc/employeeadd.php"  method="post">
        <p><input type="file" size="32" name="my_field" value="" /></p>
        <p class="button"><input type="hidden" name="action" value="image" />

        <label for="nname">Personal Name : </label> 
        <input name="nname" id="nname" type="text" tabindex="11" />
        <br />

        <label for="ninformation">Information : </label>
        <textarea id="ninformation" name="ninformation"></textarea>

        <div align="center">
            <input id="button1" type="submit"/> 
            <input id="button2" type="reset" />
        </div>
</form>

<script type="text/javascript">
$(document).ready(function(){
        var options_employeeadd = { 
                beforeSubmit:  validate_employeeadd,  // pre-submit callback 
                success:       showResponse_employeeadd  // post-submit callback 
                                   };

        $('#employeeaddform').ajaxForm(options_employeeadd); });

        function validate_employeeadd(formData, jqForm, options) {...}

        function showResponse_employeeadd(responseText, statusText, xhr, $form)  {...} 

1
  • Which version of jQuery are you using? Please also add a working example of the problem, either in the question or using jsFiddle. Commented Jul 21, 2011 at 10:37

1 Answer 1

7

The latest version of jquery form doesn't use 'handelError'. Download it here: https://github.com/malsup/form/blob/master/jquery.form.js

UPDATE: The latest link is: https://github.com/jquery-form/form/blob/master/src/jquery.form.js

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.