Does anyone have a library or JavaScript snippet to verify the check digit of credit cards before the user hits Submit?

link|improve this question

50% accept rate
Why would you ever want to use javascript to verify credit card information? – Noah Goodrich Nov 1 '08 at 3:16
1  
@gabriel1836, there is an algorithm that lets you know if the credit card digits are in the set of acceptable digits. It isn't a 100% confirmation, but you rule out nearly all random mistakes. – torial Nov 1 '08 at 3:23
It's called the luhn-10 algorithm – mdec Nov 1 '08 at 6:08
1  
@Noah: Because then you can notify the user early that they have made a mistake typing in their card number, making it easier for them to correct, rather than waiting for your server side code to check it. – xan Oct 12 '10 at 10:03
feedback

3 Answers

up vote 5 down vote accepted

The jQuery Validation Plugin has a method for validating credit card numbers.

There are other specific scripts:

Most of them use the Luhn algorithm.

link|improve this answer
feedback

I have found one with demo on google for

  • MasterCard
  • Visa
  • American Express
  • Diners Club
  • Discover
  • enRoute
  • JCB

http://javascript.internet.com/forms/val-credit-card.html

link|improve this answer
feedback

You can use this function if you're not already using the jQuery plugin. It's based on the Luhn algorithm and is tolerant of spaces or dashes so should work for most data entry cases you would need it for.

http://af-design.com/blog/2010/08/18/validating-credit-card-numbers/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.