JSFiddle - React, Tailwind, and code Playground
by magizter
HTML
<input type="text" name="sokid" id="sokid" style="width:60px" placeholder="ID">
<input type="text" name="sokstr" id="sokstr" placeholder="text">
JavaScript
$("#sokid").click(function () {
var text = $(this).text();
$('#sokstr').val('');
});
$("#sokstr").click(function () {
var text = $(this).text();
$('#sokid').val('');
});