I need to match any number up to a 3 digits (e.g., 0 ->
999)
regex for that I think should be: \d{1,3}
my cfinput has: validate="regular_expression"
pattern="\d{1,3}"
but it doesn't seem to be working - I can enter 1000 and it
submits ok.
It seems to be there in the source ok:
//form element quan_20 'REGULAR_EXPRESSION' validation checks
if (!_CF_checkregex(_CF_this['quan_20'].value, /\d{1,3}/,
true))
This is CF7 - am I missing something?