I have an e-mail field, and a confirm e-mail field. I need to validate both of them to make sure their values match.
Is there a way to add a rule to match those two
U can use this
email: { required: true, email: true }, c_email: { required: true, equalTo: "#email", minlength: 5 }, email Confirm email