#JeremyFlight

1 messages · Page 1 of 1 (latest)

copper cliffBOT
merry epoch
#

Hi there!

night jetty
#

Hi

merry epoch
night jetty
#

I'm using Stripe JS so my code looks more like this:

            const stripe = Stripe('pk_test_XXX);

            let elements = stripe.elements();
            let cardElement = elements.create("card", {
                hidePostalCode: true,
            });

            cardElement.mount("#cardElement");
#

And I need to force the user to complete the card number, expiry date and CV2 number before allowing the processing to continue...

merry epoch
night jetty
#

Yes, that looks like it should do it. Thanks.