[jQuery] Re: (validate plugin) dependency callback not being triggered

2009-11-09 Thread Brad Hile
Thanks Jules I'll give it a try now. I was looking for something that would trigger the validation but I thought it was automagically triggered onblur/keyup but perhaps thats only after the initially validate via submit * thanks for the typo spotting!.. totally missed that ta Brad On Nov 6, 11:1

[jQuery] Re: (validate plugin) dependency callback not being triggered

2009-11-05 Thread Jules
Hi, Validation only triggered if you call submit the page or call the $ ("form").valid() function. I didn't see any submit() or $ ("form").valid() call in your page. Try adding this to your page js script inside ready() $("#validateMe").click(function(){ if($("form").valid()) alert("Al

[jQuery] Re: (validate plugin) dependency callback not being triggered

2009-11-05 Thread Brad Hile
Bump > Hi > I've tried every way I can think of to use dependency to enable > additional elements to be required and have had no luck at all. I > simply want to enable "required" on a number of fields when a specific > radio button is selected and for it to be disabled when its not. > (These field