JSFiddle - React, Tailwind, and code Playground
by ghayes
HTML
<input />
JavaScript
$('input').bind('keypress', function(e) {
alert($(this).val());
});
by ghayes
<input />
$('input').bind('keypress', function(e) {
alert($(this).val());
});