Link to home
Start Free TrialLog in
Avatar of sahanz
sahanz

asked on

Jquery Validate Plugin. equalTo

Hi,

I'm using jquery validate plugin to validate a form, so for passoword confirm I use equalTo
admin_pass: {
				minlength: 5
			},
			admin_pass_confirm: {
			required: false,
				minlength: 5,
				equalTo: "#admin_pass"
			}

Open in new window


The password field is actually not required, but I cant make the confirm field not required. If user type something in password field, can I make the confirm field required?

Thank You
ASKER CERTIFIED SOLUTION
Avatar of Gurvinder Pal Singh
Gurvinder Pal Singh
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of sahanz
sahanz

ASKER

Thanks a lot