Hello,
How do I check if a field (textbox) is empty or filled only with white spaces (spaces/enters/tabs etc.), using javascript RegExp?
|
2
|
Hello, How do I check if a field (textbox) is empty or filled only with white spaces (spaces/enters/tabs etc.), using javascript RegExp? |
||
|
|
|
|
Explanation, since other people seem to have some
|
||||||
|
|
|
See answers to a similar question: recommendation for javascript form validation library. |
||
|
|
|
Could be used like so:
|
||
|
|
|
|
By testing for you will only be testing for one character . So , it will be better to test instead for :
EDIT: please note that or is not part of the code . EDIT2: The test for matching :
And the test for non-matching :
You could use either of these to same result . |
||||||||||
|