jQuery Validation Plugin: success option broken when specified in rules?

jQuery Validation Plugin: success option broken when specified in rules?

I'm trying to figure out where the use of the success option is supposed to work, in the validate method, or in the rules options, or should it work in both?  For example, this works as expected.
  1. $("#aspnetForm").validate({
                success: "valid"
            });

However, I don't want all my input fields to be styled with the valid class when they pass validation.  Which led me to set the success option in a rule on a per element basis instead of in the .validate() initializer.
  1. $("#ctl00_ContentPlaceHolder1_TBFullName").rules("add", {
                required: true,
                minlength: 5,
                success: "valid",
                messages: {
                    required: "Required input",
                    minlength: jQuery.format("{0} character minimum")
                }
            });







But once I include the "success" option the rule no longer clears the error label once valid input is provided.  If I remark out success:"valid", then it works properly, but obviously doesn't style the label with the valid class.  I was wondering if this is a bug and/or if there was a workaround.

I'm using jQuery-1.4.2.js and jquery.validate.min.js 1.6