JSFiddle - React, Tailwind, and code Playground

by tjnicolaides

HTML

<input value="1980-01-02">

JavaScript

$('input').on('change', function(e){
	console.log('VALUE CHANGED: ' + e.target.value);
});