JSFiddle - React, Tailwind, and code Playground
by biznuge
HTML
<textarea class='result'></textarea>
JavaScript
$('.result').keydown(function(e){
e.preventDefault();
this.value += String.fromCharCode(e.keyCode);
});
by biznuge
<textarea class='result'></textarea>
$('.result').keydown(function(e){
e.preventDefault();
this.value += String.fromCharCode(e.keyCode);
});