for a password I need to check the length and if there is as least 3 classes of characters (for a magento)
I'm using jqueryValidate for the length, I need to use this also for the password.
By special characters, I mean lower case, upper case, numbers, special characters .
How do I do that ?
this is what a have for now :
$('#form').validate({
rules : {
"password" : {
minlength : 8,
required : true
},
"email" :{
required: true,
email: true
}
}
});