JSFiddle - React, Tailwind, and code Playground

HTML

<div>
    <textarea></textarea>
    <textarea></textarea>
</div>
<a href="#" class="add">add</a>
<div>
    <textarea></textarea>
    <textarea></textarea>
</div>

JavaScript

$('.add').click(function(){
    $(this).next('div').find('textarea:visible:first').focus();
});