JSFiddle - React, Tailwind, and code Playground

by darkajax

HTML

<input type="text" id="num" />

JavaScript

document.getElementById('num').addEventListener('change', function(e){
    alert('el texto cambio: ' + e.target.value);
});