JSFiddle - React, Tailwind, and code Playground

by ult_combo

HTML

<label for="file_upload"><img src="http://4.bp.blogspot.com/_BxcpnIlcsto/S8i0JQmoADI/AAAAAAAAAjI/l5MjXIpBV-4/s1600/Earth-Upload-icon.png" id="upload"></label>
<input type="file" name="file_upload" id="file_upload" style="opacity:0; height:0;">

JavaScript

$(function() {
    $('#file_upload').focus(function() {
        $(this).click();
    });
    
});