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');
by neonms92
<textarea></textarea>
<div></div>
$('textarea').on('propertychanged', function() {
$('div').text('yo');
});
$('textarea').text('a');
$('textarea').text('b');