JSFiddle - React, Tailwind, and code Playground
HTML
<input id="input_file" placeholder="click me" />
JavaScript
document.getElementById("input_file").onclick = function(){
alert('you clicked me');
};
<input id="input_file" placeholder="click me" />
document.getElementById("input_file").onclick = function(){
alert('you clicked me');
};