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.
The moose likes HTML, CSS and JavaScript and the fly likes validating if the input value is float?? Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Engineering » HTML, CSS and JavaScript
Reply Bookmark "validating if the input value is float??" Watch "validating if the input value is float??" New topic
Author

validating if the input value is float??

rammie singh
Ranch Hand

Joined: Mar 26, 2009
Posts: 116
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
David Newton
Author
Rancher

Joined: Sep 29, 2008
Posts: 12617

*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.
 
I agree. Here's the link: http://aspose.com/file-tools
 
subject: validating if the input value is float??
 
Similar Threads
Dynamic rows validation from javascript
how to validate both check box and textbox field at a time
selecting dynamically added rows of a table
javascript function not being called
Help needed in using Ajax.request (prototype.js API)