Paul Bakaus schrieb:
> Hi Jörn,
>
> just a minor issue:
> The text "Please accept our policy" after clicking submit on the
> second form will not vanish directly after checking the checkbox.
> Other than that, great work!
Good point. A click of course isn't a keyup, so that doesn't work. Again
you could build a workaround for that particular field:
var validator = $("#myform").validate({
event: "keyup"
});
$("#agree").click(function() {
validator.element(this);
});
I'll think about how that can be streamlined in the plugin. Any ideas
are welcome.
--
Jörn Zaefferer
http://bassistance.de
_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/