Thursday, October 29, 2009

[jQuery] Re: (validate) validator is undefined error

Sorry, didn't read the question thoroughly,

whyvisitother: {
required: function(element) {

var result = false;
var chk = $("[name=whyvisit]");

$("[name=whyvisit]:checked").each(function
() {
if (chk.index($(this)) == 4)
result = true;
});

return result;
}
}


On Oct 30, 12:14 am, Collectonian <collecton...@gmail.com> wrote:
> Thanks, but that only seems to work if they only pick other. Since
> they can pick multiple checkboxes from that set, I need to see if they
> picked it among possibly multiple others.
>
> On Oct 28, 5:50 pm, Jules <jwira...@gmail.com> wrote:
>
> > Use this rule.
> >                 whyvisitother: {
> >                     required: function(element) {
> >                     return $("[name=whyvisit]").index($
> > ("[name=whyvisit]:checked")) == 4;
> >                     }

No comments: