JSFiddle - React, Tailwind, and code Playground
by learner001
HTML
<input type="text" value="">
<p></p>
JavaScript
$( "input" )
.keyup(function() {
var value = $( this ).val();
$( "p" ).text( value );
})
.keyup();
by learner001
<input type="text" value="">
<p></p>
$( "input" )
.keyup(function() {
var value = $( this ).val();
$( "p" ).text( value );
})
.keyup();