@kbwood.au --> SO far so good!
One of my issues in the past was that I had neglected to update my
jquery.js file. I guess it was too old :(
Now that that is updated, the form is working as I had hoped EXCEPT for
the Checkbox Group called 'spam[]'.
My spam[] checkbox validation problem:
FIRST... the Good news:
If I submit
the form
before checking any of the "spam" checkboxes, it correctly
gives me the the error message.
THEN... the Bad news:
I begin checking spam boxes and the error message for the checkboxes
does not go away or change to
✓ok!
like it should.
Could you add checkboxes to your
jsfiddle
so we could see how that would work?
http://www3.sdhc.k12.fl.us/privateschools_new/demo/custom-methods-demo.html
- <fieldset>
<label
for="spam_email">
<input
type="checkbox" class="checkbox"
id="spam_email" value="email"
name="spam[]" required minlength="1">Spam via E-Mail<br>
</label><br>
<label
for="spam_phone">
<input
type="checkbox" class="checkbox"
id="spam_phone" value="phone"
name="spam[]">Spam via Phone<br>
</label><br>
<label
for="spam_mail">
<input
type="checkbox" class="checkbox"
id="spam_mail" value="mail"
name="spam[]">Spam via Mail
</label><br>
<label
for="spam_none">
<input
type="checkbox" class="checkbox"
id="spam_none" value="no"
name="spam[]">No Spam!
</label>
</fieldset>