Is possible to detect in event onChange
for <input type=“date”>
, when user using graphical calendar and arrows or using keybord number?
I am only interested in VanillaJS solutions.
Something like this?
function handler(e){
alert(e.target.value);
}
<input type="date" id="dt" onchange="handler(event);"/>