[Solved] How to get Text from one textarea and set it in an other textarea?


Dont hide textarea before copying it. so better first you copy , Show and then you hide it .

var txt=$("textarea#" + params.field + "-quill").val();

$("#" + params.field).val(txt);
$("#" + params.field).show();
$("#" + params.field + "-quill").hide();

0

solved How to get Text from one textarea and set it in an other textarea?