使用jquery验证的远程方法出错303错误

I am using CodeIgniter, I have one field which is called as change_password_id. The user can enter the id and it will check the id exist or not in the database using the remote method of Jquery validation.

I am getting the 303 error in the network tab.

The controller is not calling from AJAX.

enter image description here

$(function() {
  $("#reset_password_request").validate({
    rules: {
      change_password_id: {
        required: true,
        remote: {
          url: "<?php echo base_url()?>Employee_control/checkemp_exist",
          type: "post",
          data: {
            change_password_id: function() {
              return $("#change_password_id").val();
            }
          }
        }
      },
    },
    messages: {
      change_password_id: {
        remote: "This emp Id is not registered with us."
      }
    },

    submitHandler: function(form) {
      // console.log(form.submit)

      form.submit();
    }

  });
});

Controller

public function checkemp_exist(){
   echo $correct_emp_id= $this->input->post('change_password_id');
   /*I will add code here after some time*/
   }

form

<?php echo form_open('','id="reset_password_request"'); ?>
<div class="form_group">
  <input type="text" class="form_control" id="change_password_id" name="change_password_id">
  <?php echo form_error('change_password_id'); ?>
</div>
<div class="btn_container">
  <button class="btn_default orange_bg" type="submit"> Send request </button>
</div>
<?php echo form_close(); ?>