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);
});
by darkajax
<input type="text" id="num" />
document.getElementById('num').addEventListener('change', function(e){
alert('el texto cambio: ' + e.target.value);
});