I am working with the jquery.validate.js plugin and in the portions where you are able to specify a specific word you want the user to submit example:
rules: {
elephant: {
equal: "elephant"
}
}
Is it possible to create a portion that allows the user to enter both "elephant" and "Elephant"? I tried adding that in a custom $.validator.addMethod function above it but I can't seem to get them to work. I wasn't sure if there was a simple way I was missing.