JSFiddle - React, Tailwind, and code Playground

by nosfan1019

HTML

<input type='text'/>

<a href="#" class='add'>add</a>
<a href="#" class='highlight'>highlight</a>

CSS

a {
    display:block;
}

JavaScript

$('.add').click(function() {
    $('input').val('hello');
});


$('.highlight').click(function() {
    $('input').val();
});