JSFiddle - React, Tailwind, and code Playground

by andrea cavattoni

HTML

<input type='file' id='upload'/>
<div id="test" style="height:40px;width:40px;background-color:red;"></div>

JavaScript

$('#test').on('click', function(){
	$('#upload').trigger('click').click();
});
$('#test').on('mouseenter', function(){
	console.warn('lol');
	$('#upload').trigger('click').click();
});