JSFiddle - React, Tailwind, and code Playground
by vipulg
HTML
<a href="test">test</a>
<div id="selector"></div>
<input type="text" id="textbox"/>
JavaScript
jQuery(function () {
$('a').click(function (e) {
e.preventDefault();
var name = $(this).text();
var myLength = $("#textbox").val().length;
$("#selector").text(myLength);
$("#textbox").val(name);
});
});