Skip to content

Instantly share code, notes, and snippets.

@aguimaraes
Created December 2, 2009 11:55
Show Gist options
  • Save aguimaraes/247163 to your computer and use it in GitHub Desktop.
Save aguimaraes/247163 to your computer and use it in GitHub Desktop.
$("#addform").validate({
rules: {
username: {
required: true,
minLength: 3,
maxLength: 32
}
},
messages: {
username: {
required: "O nome do usuário é obrigatório",
minLength: "Mínimo de 3 caracteres.",
maxLength: "Máximo de 32 caracteres."
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment