Skip to content Skip to sidebar Skip to footer

Mobile Chrome Won't Offer To Scan Credit Card

We're setting up credit card autocomplete for our website. We have added autocomplete tags in HTML , such as cc-number for Credit card number field. However, when I tap on the cred

Solution 1:

Set of html attributes need to set for your text field,

type = "number", pattern="([0-9]{5})", inputmode="numeric"

And id or name attribute for the text field should read "CreditCardNumber" or label for your text field should read "Credit Card Number"

Post a Comment for "Mobile Chrome Won't Offer To Scan Credit Card"