Tagged Questions
4
votes
3answers
510 views
Client-side verification of credit cards
Does anyone have a library or JavaScript snippet to verify the check digit of credit cards before the user hits Submit?
2
votes
4answers
228 views
Identify card type from card number
i have an array of card types that looks something like this
var cards = new Array();
cards [0] = {name: "VISA", length: "13,16", prefixes: "4", checkdigit: true};
cards [1] = {name: ...
1
vote
3answers
142 views
Chunk a string every odd and even position
I know nothing about javascript.
Assuming the string "3005600008000", I need to find a way to multiply all the digits in the odd numbered positions by 2 and the digits in the even numbered positions ...
0
votes
1answer
408 views
JavaScript luhn check
apologies in advance, i'm having a mind block day. Ive used the code from the link below to try and validate a credit card, however i'm not getting an alert when i submit a the wrong data in the ...