I need a Regular expression to validate number greater than 0 and less than 1999.
I tried the below code but it require LiveValidation and lot of code.
var f8 = new LiveValidation('f8');
f8.add( Validate.Numericality, { minimum: 0, maximum: 1999} );
Thanks
Have you tried something like this: