not allow typing in a text field html, can use JavaScript or any function of html -
I have a text field html and there is a decade in it, this letter does not allow writing, but numbers are allowed . I need that they do not allow numbers.
This is the function you want to do:
Javascript : and here HTML : See this. Hope it helps.
document.getElementById ("date"). Onkeyup = function () {return false; }
& lt; Input id = "date" type = "date" & gt;
Comments
Post a Comment