Examples of using JS Auto Form Validator
To define fields for validation process, you need to give them a special prefix,
consists of 3 letters, where:
First letter:
r - required, s - simple (not required)
Second letter:
n - numeric, i - integer, f - float,
a - alphabetic, t - text, e - email,
p - password, l - login, y - any (any symbol),
z - zipcode, v - verified, c - checked (for chekboxes),
u - url, s - SSN number, m - telephone
x - template
Example (d - digit, c - character):
name="rxTemplate1" template="(ddd)-ddd-dd-dd",
Third letter (optional):
for numbers: s - signed, u - unsigned, p - positive, n - negative
for strings: u - upper, l - lower, n - normal, y - any
for telephone: m - mobile, f - fixed (stationary), i - international, y - any
Sample 1.
Sample 2.
Sample 3.
Sample 4.
Sample 5.
Sample 6.






























