How to clear FileList Jquery (JavaScript)

43 views Asked by At

I'm uploading files ajax jquery, and i need clear filelist array. How i can clear FileList array by input id or other options please;

This code:

document.getElementById("myInputFileID").value=null;

Not working

1

There are 1 answers

0
YaMus On
var $input = $("#control");

$input.replaceWith($input.val('').clone(true));

https://stackoverflow.com/a/47795271/15331960