DEV Community

Discussion on: How to create a custom file upload button

Collapse
 
peranp profile image
Predrag Peranović

This is nice solution but you can't focus "button" with keyboard.

I used something like this to make focus working:

<input style="display:none" type="file" id="my-file">
<button type="button" onclick="document.getElementById('my-file').click()">Choose file\</button>