Accepting credit cards, warehouses, and shipping and fulfilling orders
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
(function($) { $(document).on("page:load page:change", function() { if (Shopify.Checkout.step === "payment_method") { $(".shown-if-js button[type=submit].step__footer__continue-btn").on("click", function(e) { e.preventDefault(); // here is my validation logic $("[data-payment-form]").submit(); }); $("[data-payment-form]").on("keyup", function(e) { if (e.keycode === 13) { e.preventDefault(); $(".shown-if-js button[type=submit].step__footer__continue-btn").trigger("click"); } }); } }); })(Checkout.$);