I have tried adding it in my code but it does not seem to work. All my form values are serialized and posted through ajax submit, but I am unable to post my file name as it requires enclosure type to be added.
submitHandler: function() {
$.post('abc.php', 'enctype:multipart/form-data',
$('form#jobseeker_form').serialize() ,
function(data){
alert(data.msg);
},"json");
}