JSFiddle - React, Tailwind, and code Playground
by luka kupunia
HTML
<button>fwef</button>
<input type="file">
CSS
body {
margin: 0;
}
.box {
margin: 100px 0;
}
JavaScript
$('button').click(function(){
$('input').click();
})
by luka kupunia
<button>fwef</button>
<input type="file">
body {
margin: 0;
}
.box {
margin: 100px 0;
}
$('button').click(function(){
$('input').click();
})