I have
<input id="seleccion" name="archivos" multiple type="file" accept=".doc,.docx,.pdf" />
I need to delete one of the files (one by one)
function EliminaArchivo(item){
 $("#seleccion").vall(null);
}
this empties the input file completely and I need to delete only the file with the index that I'm passing as a parameter to my function.
file1 [0]    //here button for delete this file                                                                   
file2 [1]    //here button for delete this file                                    
file3 [2]    //here button for delete this file
i need remove file1 [1]...
