Depending on the answer @ user1419007.
It already tests if you already have a text box under the comment. If so, it will be sent.
$('.reply').click(function(){ if($(this).parent().find('textarea').length < 1) { $(this).parent().append($('<textarea>').attr('class','reply')); } else { alert('Sending: ' + $(this).parent().find('textarea').val()); } });โ
Here is an example on JSFiddle
source share