3
I have the script below, which blocks all typing in an input, forcing the user to use the DatePicker
available:
$(".readonly").keydown(function(e){
e.preventDefault();
});
In this same script, there is how I allow access to only the key delete
?
Thanks for the reply, but I tested in 2 locations and it did not work....
– Diego
edited answer, tries with new code
– 13dev
if it doesn’t work try to change
which
forkeyCode
– 13dev
It worked with the keycode. Thank you very much!
– Diego
Ah was to find strange , I hope to have helped!
– 13dev