Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagejs
valid = (input.length < 250) ? true : "Maximum character length reached.";


 

Additional Examples

The below code can be used to ensure the value entered into a text field matches that of another control.  For example, in some cases, you may want to make sure a typed signature matches the name of an employee who is submitting a form.

...