7 lines
253 B
JavaScript
7 lines
253 B
JavaScript
|
10 years ago
|
/**
|
||
|
|
* Dutch giro account numbers (not bank numbers) have max 7 digits
|
||
|
|
*/
|
||
|
|
$.validator.addMethod("giroaccountNL", function(value, element) {
|
||
|
|
return this.optional(element) || /^[0-9]{1,7}$/.test(value);
|
||
|
|
}, "Please specify a valid giro account number");
|