I would like to change the placeholder value from "Card Number" to something like 1234*****5678 in the stripe modal. How can I do that?
Thank you.
The modal has been generate by the below code.
<script src="https://checkout.stripe.com/checkout.js" ></script>
var handler = StripeCheckout.configure({
key: "",
locale: 'english',
image: '',
panelLabel: 'Update Card',
token: function(token) {
});
handler.open({
name: "sitename",
currency: 'USD',
opened: function () {
}
});