JSFiddle - React, Tailwind, and code Playground
by amitrdx
HTML
<textarea id="txt" value=test></textarea>
<label id="lbl">gd</label>
<button id="target">Click</button><hr>
<pre>sdfsdf
sdfsdf
sdfdg
sdfsd
fdf</pre><hr>
<label>sdfsdf
sdfsdf
sdfdg
sdfsd
fdf</label>
JavaScript
$("#target").click(function(){
var test ="123";
console.info(test)
$("#lbl").html($("#txt").val());
})