6 lines
253 B
JavaScript
6 lines
253 B
JavaScript
/**
|
|
* 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");
|