what I'm trying to do to insert new data in text area without effect the previous one:
<textarea class="form-control" rows="5" id="data" name="data">
roma is the most visit
</textarea>
$("#data").val('new line without delete the previous one ');
what I expect:
<textarea class="form-control" rows="5" id="data" name="data">
roma is the most visit
new line without delete the previous one
</textarea>
So how can I do it?