I wonder if someone could please help me. I have multiple inputs that need to insert into a textarea as you type. I've gotten that to work but when I start typing in a new input it resets the textarea with only that text from the input. I need it to continuously add from each input.
$(responseList).on("keyup", ".response-input", function(e) {
$("textarea").text(e.target.value);
});
Any assistance would be greatly appreciated!