JSFiddle - React, Tailwind, and code Playground
HTML
<input placeholder="Enter name" type="text" id="name-input">
JavaScript
document.getElementById('name-input').addEventListener('input', function(e){
console.log(e.target.value);
})
<input placeholder="Enter name" type="text" id="name-input">
document.getElementById('name-input').addEventListener('input', function(e){
console.log(e.target.value);
})