JSFiddle - React, Tailwind, and code Playground
by Antal Orcsik
HTML
<input type="text" id="sss" value="test" />
JavaScript
$("#sss").click(function() {
var v = $(this).val();
$(this).val(v);
});
by Antal Orcsik
<input type="text" id="sss" value="test" />
$("#sss").click(function() {
var v = $(this).val();
$(this).val(v);
});