Issue with jquery.forms.js IE only works first time

Issue with jquery.forms.js IE only works first time

I am trying to upload a file and it works in chrome but only works first time in IE.
 
$(document).ready(function () {
  
 
    $('form').ajaxForm({
        url: 'TestEventHandler.ashx',
        type: 'POST',
        success: function () {


        },
        error: function (jqXHR, textStatus, errorThrow) {
            debugger;
        }
    });
  
});

 
 
 
 <form id="form1" action="TestEventHandler.ashx"  method="post" enctype="multipart/form-data" >
        <input type="file" name="myfile"/>
        <input type="submit"  class="upload-test" value="Upload File to Server"/>
         <div class="progress">
                <div class="bar"></div >
                <div class="percent"></div >
            </div>
   
        <div id="status"></div>




   
    </form>