PHP Classes

File: public/asset/vendor/jquery-validation/src/additional/giroaccountNL.js

Recommend this page to a friend!
  Classes of fathurrahman   mnTemplate   public/asset/vendor/jquery-validation/src/additional/giroaccountNL.js   Download  
File: public/asset/vendor/jquery-validation/src/additional/giroaccountNL.js
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: mnTemplate
Route HTTP requests to callback functions
Author: By
Last change:
Date: 1 year ago
Size: 261 bytes
 

Contents

Class file image Download
/** * 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" );