JSFiddle - React, Tailwind, and code Playground
HTML
<textarea id="editor">
</textarea>
<a id="link" href="#">Link</a>
JavaScript
var link = document.getElementById('link');
link.addEventListener('click', editContent);
function editContent() {
var editor = document.getElementById('editor');
editor.value += "text";
}