I need to compare a textarea to make sure:
- It's not ONLY SPACES and not ONLY RETURNS(new lines) and NOT ONLY a combination of these two.
- However, if there are more than 3 characters OR numbers, then it is okay.
- Not more than say 2000 characters.
Imagine a textarea, I don't want the form to submit if the user have pressed enter (new line) 5 times, and I don't want it to submit with only spaces. There must be atleast 3 characters or numbers.
Thanks