JSFiddle - React, Tailwind, and code Playground

by neonms92

HTML

<textarea></textarea>
<div></div>

JavaScript

$('textarea').on('propertychanged', function() {
    $('div').text('yo');
});
$('textarea').text('a');
$('textarea').text('b');