I have this file input:
<input id="some_file_input" type="file" name="some_file" class="custom-input-thing" data-buttonName="btn-primary" data-icon="true">
i hide the text that comes with the button, the one that says "no file selected", just becouse of the "looks":
input[type=file] {
color: transparent;
display: block;
}
Is there a way to change the text of the file input when the user selects the file to upload??
Thanks in advance for any help.