JSFiddle - React, Tailwind, and code Playground
HTML
<span class="sp">CLICK</span><br />
<textarea type="text" cols="60" rows="10"/></textarea>
JavaScript
$('.sp').click(function() {
$('textarea').html('рас <br /> два');
});
<span class="sp">CLICK</span><br />
<textarea type="text" cols="60" rows="10"/></textarea>
$('.sp').click(function() {
$('textarea').html('рас <br /> два');
});