JSFiddle - React, Tailwind, and code Playground

by Fiachra Lennon

HTML

<a href="#" onclick="addText()" class="btn">Button</a>

<input type="text" id="egText" value="Stuff" />

<input type="text" id="searchBox" placeholder="A placeholder" />

JavaScript

function addText() {
    var text = $("#egText").val();
    $("#searchBox").val(text);
}