I'm using the input element in HTML with the file type option, IE: <input type="file" />
with the option of allowing multiple files to be selected.
However, I'm wondering if there's a way to remove or clear all of the files that the user selected via the file type button though a click of a button.
Basically, here is what I have so far:
<input type="file" multiple="multiple" />
<input type="button" value="Clear all attachments" onclick="" />
I have no idea how to implement that second button.