JSFiddle - React, Tailwind, and code Playground

by Leonid Artemev

HTML

<textarea id='text' />

JavaScript

var text = $('#text');
text.val('def');
text.html('def');


text.text('12345');
console.log('text :', text.val(), text.html());

text.html('666');
console.log('html :', text.val(), text.html());

text.val('56546');
console.log('val :', text.val(), text.html());