JSFiddle - React, Tailwind, and code Playground

by Ufuk Ozdemir

HTML

<div class="new_Btn">SelectPicture</div><br>
<input id="html_btn" type='file'" /><br>

CSS

.new_Btn {

}

#html_btn {
 display:none;
}

JavaScript

$('.new_Btn').bind("click" , function () {
	$('#html_btn').click();
});