Giter Site home page Giter Site logo

jquery.bank's Introduction

jQuery.bank Build Status

A library for building bank account forms, formatting and validating inputs.

Installation

If you use bower:

bower install jquery.bank

Otherwise, you can download it from here.

API

$.fn.bank(field, countryCode)

Formats input value as a bank account field field in country countryCode.

ISO 3166-1 alpha-2 is used for countryCode.

$.bank.validate(field, countryCode, number)

Validates a given number as a bank account field field in country countryCode. It returns if it is valid and false if it is invalid.

Note that validation is designed to detect accidental errors. In other word, if the validation test says the number is invalid, it is 100% incorrect. However, if the test says the number is valid, there is a chance that the number is incorrect.

Formats and Validations

Japan (JP)

Bank Number

$input.bank('BankNumber', 'JP');
  • Restricts input to numbers
  • Limits to 4 numbers
$.bank.validate('BankNumber', 'JP', number);
  • Validates numbers
  • Validates length to 4

Branch Number

$input.bank('BranchNumber', 'JP');
  • Restricts input to numbers
  • Limits to 3 numbers
$.bank.validate('BranchNumber', 'JP', number);
  • Validates numbers
  • Validates length to 3

United States (US)

Routing Transit Number

$input.bank('RoutingTransitNumber', 'US');
  • Restricts input to numbers
  • Limits to 9 numbers
$.bank.validate('RoutingTransitNumber', 'US', number);
  • Validates numbers
  • Validates length to 9
  • Validates first two digits
  • Validates check (last) digit

Example

http://gumroad.github.io/jquery.bank/

Contribute

Install development dependencies

npm install

We follow polarmobile/coffeescript-style-guide.

Test

npm test

Build

cake build

References

jquery.bank's People

Contributors

kn avatar

Watchers

Bogdan Tănase avatar James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.