JSFiddle - React, Tailwind, and code Playground

by Md. Atiquzzaman Soikat

HTML

<input placeholder="Enter name" type="text" id="name-input">

JavaScript

document.getElementById('name-input').addEventListener('input', function(e){
	console.log(e.target.value);
})