tags:

views:

77

answers:

2

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
+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
Nitpick: There's no onkeyup tag. There is an onkeyup attribute though :P
Martinho Fernandes