0

How do I prevent only spaces in the text area? I don't want to allow only white spaces in the text area using HTML pattern or Validator.pattern.

10 Rep
  • 2,217
  • 7
  • 19
  • 33

1 Answers1

-1

You can use this regex for no spaces:

<form>
    <input type="text" pattern="[^' ']+" />
</form>
MauriceNino
  • 6,214
  • 1
  • 23
  • 60
Arkalex
  • 101
  • 6