Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

PawelDecowski/jquery-creditcardvalidator

Open more actions menu

Repository files navigation

jQuery Credit Card Validator

jQuery Credit Card Validator detects and validates credit card numbers. It’ll tell you the detected credit card type and whether the number length and Luhn checksum are valid for the type of card.

Installation

NPM

npm i jquery-creditcardvalidator

Download

Download the latest jquery.creditCardValidator.js.

The latest stable version is always in the master branch. If you need previous versions, you’ll find them on the releases page.

Do not use any branches other than master. Branches starting with release/ are development branches and they will most likely be broken.

How to use

Run validation every time a field value changes:

$('#cc_number').validateCreditCard(function(result) {
    if (result.valid) {
        $(this).addClass('cc-valid');
    } else {
        $(this).removeClass('cc-valid');
    }
});

Run validation once:

const result = $('#cc_number').validateCreditCard();

if (result.valid) {
    $(this).addClass('cc-valid');
} else {
    $(this).removeClass('cc-valid');
}

Documentation

For full documentation see the jQuery Credit Card Validator website.

About

jQuery credit card validation and detection plugin

Resources

License

Contributing

Stars

Watchers

Forks

Packages

 
 
 

Contributors

Morty Proxy This is a proxified and sanitized view of the page, visit original site.