JSFiddle - React, Tailwind, and code Playground
by holden321
HTML
<input/>
<div></div>
JavaScript
$("input").on("change keydown keypress keyup cut paste",function(e){
$("div").text(this.value);
});
by holden321
<input/>
<div></div>
$("input").on("change keydown keypress keyup cut paste",function(e){
$("div").text(this.value);
});