-
-
Save jerronimo/99598be3e86513faf2f058e1a255c597 to your computer and use it in GitHub Desktop.
Custom Stripe Checkout Button
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<form action="." method="post"> | |
<noscript>You must <a href="http://www.enable-javascript.com" target="_blank">enable JavaScript</a> in your web browser in order to pay via Stripe.</noscript> | |
<input | |
type="submit" | |
value="Pay with Card" | |
data-key="PUBLISHABLE STRIPE KEY" | |
data-amount="500" | |
data-currency="cad" | |
data-name="Example Company Inc" | |
data-description="Stripe payment for $5" | |
/> | |
<script src="https://checkout.stripe.com/v2/checkout.js"></script> | |
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.js"></script> | |
<script> | |
$(document).ready(function() { | |
$(':submit').on('click', function(event) { | |
event.preventDefault(); | |
var $button = $(this), | |
$form = $button.parents('form'); | |
var opts = $.extend({}, $button.data(), { | |
token: function(result) { | |
$form.append($('<input>').attr({ type: 'hidden', name: 'stripeToken', value: result.id })).submit(); | |
} | |
}); | |
StripeCheckout.open(opts); | |
}); | |
}); | |
</script> | |
</form> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment