Thank you for your payment
(function() {
  var stripe = Stripe('pk_live_51JMKVZA0aRiPfqeQ1Jmuy0h9iX32VEeuYiBN0CwhRSzjqxq7mIIs5taEmgewdJ1LSiECiy2dJNSkGXN7ATBOQLBD00NFZmb7uy');
  var checkoutButton = document.getElementById('checkout-button-price_1JQ7coA0aRiPfqeQjCS7mNWo');
  checkoutButton.addEventListener('click', function () {
    /*
     * When the customer clicks on the button, redirect
     * them to Checkout.
     */
    stripe.redirectToCheckout({
      lineItems: [{price: 'price_1JQ7coA0aRiPfqeQjCS7mNWo', quantity: 1}],
      mode: 'payment',
      /*
       * Do not rely on the redirect to the successUrl for fulfilling
       * purchases, customers may not always reach the success_url after
       * a successful payment.
       * Instead use one of the strategies described in
       * https://stripe.com/docs/payments/checkout/fulfill-orders
       */
      successUrl: window.location.protocol + '//www.autumn-lane.com/success',
      cancelUrl: window.location.protocol + '//www.autumn-lane.com/canceled',
    })
    .then(function (result) {
      if (result.error) {
        /*
         * If `redirectToCheckout` fails due to a browser or network
         * error, display the localized error message to your customer.
         */
        var displayError = document.getElementById('error-message');
        displayError.textContent = result.error.message;
      }
    });
  });
})();