JSFiddle - React, Tailwind, and code Playground

HTML

<form class='form first' action="" method="POST" enctype="multipart/form-data">
    <span class='filename first'>FILE 1</span>
    <input class='file' id='id_image' type='file'>
    <input class="browse first" id='id_button' type="button" value="+"/>
    <span class="status first"></span>
    <input class="send first" type="submit" value="OK">
</form>

JavaScript

$('.browse.first').on("click", function () {
    alert ("ok");
    $('#id_image').click();
});