Changing character length jquery validate

I using the jquery_validate.js script to validate my registration page. Does a great job, but I need to increase the length of password characters from 6 to 8, with at least one number.

This is the message a user gets:

Please enter at least 6 characters.

I’m quite new to jQuery and I looked at the jQuery validation page and couldn’t figure out how to change the parameters.

It’s suppose to be easy to modified by I’m at a loss as to how to change the rule from 6 to 8 and include a number.

Help Please

If you’re talking about the plugin on the jQuery website written by [URL=“http://bassistance.de”]Jörn Zaefferer then it’s pretty simple :slight_smile:

The “rules” page explains how to add a rule for an element:

$("#myinput").rules("add", {
 minlength: 2
});

Thanks. Like I said, I’m quite new to this world and once you showed me where to look, it made sense.

That’s, now all I have to do is everything else.