Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Auto-format credit card number input as user types

I want to create an input using JavaScript that automatically formats it in the correct Credit Card format.

What I Want?

  1. The input should format input in groups of 4. e.g. If I typed in 1234567890123456, it should format it to 1234 5678 9012 3456
  2. The max length should be 16 digits. So if I typed in 1234567890123456789 it should format it to "1234 5678 9012 3456"
  3. formatting should occur as you type. So if I typed "123456" it should format it to "1234 56"
  4. Invalid characters should be ignored. So if I typed in 564adsd299 474 it should format it to "5642 9947 4"

The input should also respect traditional behaviour of the textbox. (The | here resembles the cursor e.g.

If I typed in 8 when the input is:

  1. 1234 5|67 it should turn to 1234 58|67
  2. 1234|, it should turn to 1234 8
  3. 1234| 567 it should turn to 1234 8567
  4. 1234| 5679 it should turn to 1234 8567 9

If I delete the previous character when the input is:

  1. 1234 5|67 it should turn to 1234 |67
  2. 1234 |567 it should turn to 1234| 567
  3. 1234| 567 it should turn to 123|5 67

More test cases is likely to follow.

Example

Basically it should behave exactly like the "Enter card details" used in Google Play Store. To find this page: Open Play Store on an Android device > Click Account > Payment methods > Add credit or debit card. This screen can also be found here: https://play.google.com/store/account

What I have so far?

This is what I have so far:

var txtCardNumber = document.querySelector("#txtCardNumber");
txtCardNumber.addEventListener("input", onChangeTxtCardNumber);

function onChangeTxtCardNumber(e) {		
    var cardNumber = txtCardNumber.value;
 
	  // Do not allow users to write invalid characters
    var formattedCardNumber = cardNumber.replace(/[^\d]/g, "");
    formattedCardNumber = formattedCardNumber.substring(0, 16);
  
    // Split the card number is groups of 4
    var cardNumberSections = formattedCardNumber.match(/\d{1,4}/g);
    if (cardNumberSections !== null) {
        formattedCardNumber = cardNumberSections.join(' ');	
    }
	
    console.log("'"+ cardNumber + "' to '" + formattedCardNumber + "'");
  
    // If the formmattedCardNumber is different to what is shown, change the value
    if (cardNumber !== formattedCardNumber) {
        txtCardNumber.value = formattedCardNumber;
    }
}
<input id="txtCardNumber"/>

The above formats the credit number perfectly, but the issues begin when I want to edit.

However, the above does not satisfy test cases 5 onward, as the cursor just jumps to the end.

How can I achieve this behaviour. I know it's possible as Google has done it already.

(Please no use PayPal answers)

Edit: Note that I am looking for native JavaScript solutions, however feel free to suggest plugins as comments. The exception is libraries with little to no dependencies so it's possible to just copy the source code.

I've also removed jQuery on the above code to encourage native JS solutions.

like image 341
Yahya Uddin Avatar asked Jul 25 '17 19:07

Yahya Uddin


People also ask

What are the inputs of a credit card number?

Once the credit card number is validated, it slides over to the left leaving only the last four trailing digits for reference and the next set of inputs appear in the mask: expiration date, CVV (security) code, and ZIP code. Since these are all numeric inputs, a 0-9 set of soft keys is all that is needed to keep people moving along on the keyboard.

How does BestBuy auto-format my credit card numbers?

BestBuy auto-formats the user’s credit card number as it is entered. Auto-formatting card numbers should ideally be accomplished live while users enter their card number (also known as an “input mask”). Input masking offers the benefit of allowing users to more easily check the card numbers because spaces are added while they enter them.

Which credit card types should I auto-format?

To ensure a good return on investment, consider only supporting auto-formatting for the most common 15- and 16-digit cards, like VISA, MasterCard, JCB, Discover, and AMEX (and/or any card types that are particularly popular on your site).

How many characters can you type in a card number?

At the most basic level all sites should allow users to type spaces in the “Card Number” field. That means sites should neither disallow the specific “space” input character nor set an input length limitation (e.g., limiting the field to 16 characters).


1 Answers

I see you're using jQuery, rather than try to solve this logic yourself you could consider using a masked input plugin. I chose this one simply because it came up first in a search. There are customization options and it appears to satisfy all your requirements.

$('#txtCardNumber').mask("9999 9999 9999 9999");
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.maskedinput/1.4.1/jquery.maskedinput.js"></script>
<input id="txtCardNumber"/>
like image 80
Jamiec Avatar answered Sep 29 '22 03:09

Jamiec