I'm using ASP.NET with jQuery. I have a TextBox and I will insert only float values, i.e: 11.33
. I'll control the inserted characters from keyboard when writing the value 11.33
. If the user enters a character which is not a number or a '.', then the TextBox should ignore it and not insert it.
How can I do?