When a user submits a form I want to check one of the characters with in a field to see if it is a number, just one character though, not the entire field. Heres what I do now, its sad I know.
Code: Select all
if(checkStr.charAt(0) != 0 && checkStr.charAt(0) != 1...)Thanks,
Ace