ajaxsubmit(jquery.form) not working in ie9

ajaxsubmit(jquery.form) not working in ie9

Hello,
I'm using ajaxSubmit of jquery.form.js.
but ajaxSubmit not working in InternetExplorer9 and not alert error.
Please check code
Thank you

  1. < script type ="text/javascript" src ="/jquery/jquery.form.js" ></ script >

  2. var options = {

    url: "/photo/insert.do",

    type: "post",

    beforeSubmit: validateForm,

    success: resultResponse,

    dataType: 'json',

    resetForm: false,

    cache: false,

    error:function(request,status,error){

            alert("code:"+request.status+"\n"+"message:"+request.responseText+"\n"+"error:"+error);

        }

    };

    jQuery('#registForm').ajaxSubmit(options);