JSFiddle - React, Tailwind, and code Playground
HTML
<form>
<textarea id="textareaID">hello</textarea>
</form>
<div id="textValue"></div>
JavaScript
$(function() {
var textValue = $('#textValue');
$('#textareaID')
.bind('input propertychange', function() {
textValue.html($(this).val());
})
.trigger('propertychange');
});