Some users a writing their messages in uppercase only, and I want to avoid that with JQuery Validation Engine.
I have tried many many regex without any success. Here is the idea for a custom rule to avoid more than 10 uppercase characters:
uppercase: {
regex: /^(![A-Z]{10})+$/,
alertText: "* uppercase test alert"
},
I can't figure out what's wrong.