JSFiddle - React, Tailwind, and code Playground
by jbalsas
HTML
<input id="test"></input>
JavaScript
document.getElementById('test').addEventListener('input', function(event) {
console.log(event);
});
by jbalsas
<input id="test"></input>
document.getElementById('test').addEventListener('input', function(event) {
console.log(event);
});