What is the best way to restrict "number"-only input for textboxes?
I am looking for something that allows decimal points.
I see a lot of examples. But have yet to decide which one to use.
|
What is the best way to restrict "number"-only input for textboxes? I am looking for something that allows decimal points. I see a lot of examples. But have yet to decide which one to use.
| ||||
|
feedback
|
|
I've successfully implemented many forms with jquery.numeric plugin.
Moreover this works with textareas also! | |||||||||||||||
feedback
|
|
If you want to restrict input (as opposed to validation), you could work with the key events. something like this:
And:
This immediately lets the user know that they can't enter alpha characters, etc. rather than later during the validation phase. You'll still want to validate because the input might be filled in by cutting and pasting with the mouse or possibly by a form autocompleter that may not trigger the key events. | |||||||||||
feedback
|
|
The jquery.numeric plugin has some bugs that I notified the author of. It allows multiple decimal points in Safari and Opera, and you can't type backspace, arrow keys, or several other control characters in Opera. I needed positive integer input so I ended up just writing my own in the end.
| |||
|
feedback
|
|
You can use the Validation plugin with its number() method.
| |||
|
feedback
|
|
The best way is to check the contects of the text box whenever it loses focus. You can check whether the contents are a "number" using a regular expression. Or you can use the Validation plugin, which basically does this automatically. | |||
|
feedback
|
|
I just found an even better plug-in. Gives you much more control. Say you have a DOB field where you need it be numeric but also accepts "/" or "-" characters. It works great! Check it out at http://itgroup.com.ph/alphanumeric/. | |||||
feedback
|
|
This function does the same thing, uses some of the ideas above.
| |||
|
feedback
|
|
Check this find code for Database use:
| ||||
|
feedback
|
This code worked pretty good on me, I just had to add the 46 in the controlKeys array to use the period, though I don't thinks is the best way to do it ;) | |||
|
feedback
|
|
This is a snippet I've just done (using a part of code by Peter Mortensen / Keith Bentrup) for an integer percent validation on a textfield (jQuery is required):
This code:
I hope this helps those in need. | ||||
|
feedback
|
|
Thanks for the post Dave Aaron Smith I edited your answer to accept decimal point and number's from number section. This work perfect for me.
| |||
|
feedback
|
|
You can use autoNumeric from decorplanit.com . They have a nice support for numeric, as well as currency, rounding, etc. I have used in an IE6 environment, with few css tweaks, and it was a reasonable success. For example, a css class adapted from autoNumeric website:
| |||
|
feedback
|
|
Just run the contents through parseFloat(). It will return | ||||
|
feedback
|
|
Please add in the bottom of the script:
| ||||
|
feedback
|