forked from stripe-archive/jquery.payment
-
Notifications
You must be signed in to change notification settings - Fork 104
Number
Omar Shammas edited this page Sep 13, 2013
·
1 revision
Formats the number:
- Restricts input to numbers
$('input.number').formance('format_number');
Validates the number:
- Validates all characters are digits
- If the
formance_length
data attribute exists, then it will check that the input length matches what was specified. It must be a number.
$("<input value='1234' />").formance('validate_number'); // true
$("<input value='1234' data-formance_length=4 />").formance('validate_number'); // true
$("<input value='1234' data-formance_length=5 />").formance('validate_number'); // false
$("<input value='1234a' />").formance('validate_number'); // false