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);
});