I have the following script, which blocks all typing in an input, forcing the user to use DatePicker
made available:
$(".readonly").keydown(function(e){
e.preventDefault();
});
In this same script, is there any way I can only allow the delete
?