Update The Status Of A Input[type=file] When Change Files
I've this file input: If I add or remove files inside this input, it doesn't update its text. fileSelector.files = [];
Solution 1:
It is not possible to set the value of FileList of <input type="file"> element .files programmatically; FileList is read-only
Post a Comment for "Update The Status Of A Input[type=file] When Change Files"