This week's book giveaway is in the General Computing forum. We're giving away four copies of Arduino in Action and have Martin Evans, Joshua Noble, and Jordan Hochenbaum on-line! See this thread for details.
Hi ..... i want to make a validation for my input text..whether it is float or not...
How can i do it through javascript.
please help.
i tried doing something like this...
and my javascript function is..
but on my jsp page it gives error saying an object is expected..
please help ... although the alert staement in the function that is alert("float value is.."+floatValue); is getting printed fine
*All* text input values are just that: text. You'd need to check against a regular expression, or maybe try converting it and checking for failure--but that may be error-prone.
Also, note that isFloat() is actually Number.isFloat(), not a standalone function.