This works for me:

var validator = $("#myform").validate();
$(".cancel").click(function() {
        validator.resetForm();
        validator.submitted = {};
});

I just commited a patch that resets submitted when calling resetForm,
so this will work, too, once you update:

var validator = $("#myform").validate();
$(".cancel").click(function() {
        validator.resetForm();
});

Jörn

On Thu, Jul 10, 2008 at 4:41 AM, caseyw <[EMAIL PROTECTED]> wrote:
>
> I already am, which doesn't reset it completely.
> Thank you though. Hopefully Jörn will know what I'll need to do :D
>

Reply via email to