How can I block digit in a tag input?
+2
A:
Attach keydown event listener and stop event bubbling when digit is pressed. You must use javascript for this.
Alex Reitbort
2010-09-14 15:11:28
+3
A:
short answer for a short question: javascript
longer answer: add an onkeyup attribute to call a js function which checks for digits
Jeremy Goodell
2010-09-14 15:12:06
Nitpick: There's no onkeyup tag. There is an onkeyup attribute though :P
Martinho Fernandes
2010-09-14 15:23:36