I got the form to validate by adding a # to the select name
var stateSelected = $('#state').fieldValue();
I would like the check boxes just to require that 1 or the other on top is checked.
<fieldset title="listSelect" id="listSelect">
<label
for="publicList">I want to join the Public
list</label><input type="checkbox" name="checkbox"
id="publicList" value="publicList" />
<label for="Artist
List">I want to join the Artist list</label><input
type="checkbox" name="checkbox" id="artistList" value="artistList"
/></fieldset>
- I have thought about jQuery.validation.js, I've used it, but this is a template and all the scripts are pre built. I just need to add this to the form.
thanks-