I have an <input type="file">
:
<input type="file" multiple="multiple" name="fileToUpload" id="fileToUpload">
If no files are selected, then the label says 'No files selected.' In case of a single selected file, the label next to it displays the file name. If more than one file is selected, it says 'n files selected.'
I was wondering if I could remove that label altogether, so there is only the button left?
Note that the label I'm talking about isn't visible in the DOM.