JSFiddle - React, Tailwind, and code Playground
by NibblyPig
HTML
<input type='date' />
<div>
</div>
JavaScript
$('input').on('change', function () {
$('div').append("<span>" + new Date().toString() + "</span><br/>");
});
by NibblyPig
<input type='date' />
<div>
</div>
$('input').on('change', function () {
$('div').append("<span>" + new Date().toString() + "</span><br/>");
});