JSFiddle - React, Tailwind, and code Playground

by Alireza Safian

HTML

<textarea style="overflow:scroll; height:250px;max-height:250px" class="form-control mt-lg" id="xyz">sadasdasdasdasdasdasd</textarea>

<textarea style="overflow:scroll; height:250px;max-height:250px" class="form-control mt-lg" id="abc"></textarea>

JavaScript

$(document).ready(function () {
        var cannedtext = $("#xyz).val();
         $("#abc").val(cannedtext);
       });