So as the title suggests I am trying to limit integers in a input to 11, has anyone got a simple solution to this?
Edit. Sorry should be a little more precise, I'm not trying to limit the actual input to 11. I'm trying to limit the amount of digits inputted to 11 such as,
input 123 = okay input 123456789123 = invaid
Assuming you mean to only accept integers in the range
0 <= x <= 11, you could use: