JSFiddle - React, Tailwind, and code Playground

by jbalsas

HTML

<input id="test"></input>

JavaScript

document.getElementById('test').addEventListener('input', function(event) {
    console.log(event);
});