Jquery – Disable manual entry input type date
I have an input type date like <input type="date" /> I don't want users to be able to change the date manually, but require them to use the button provided for. So I did <input type="date" onkeydown="return false"/> No problem…