[jQuery] (Validate)Is it slower to add all rules with rules.add verus by doing it in $("#id").validate({....})?

[jQuery] (Validate)Is it slower to add all rules with rules.add verus by doing it in $("#id").validate({....})?


Hi
I have 2 forms with identical validation rules so I am trying to use
the same jquery.validate() to cut down on duplicate code and make the
code smaller and easier to read.
So they only way I can figure out how to do is this by adding
everything with the jquery.addRules method. But I am wondering is this
slower to do then the other way?
Like does it have to do more binding and stuff?
Or is there a better way?