im currently attempting to integrate Stripe into a little website.
I can see within Firebug, that this get request runs correctly
https://checkout.stripe
So I changed the handler to include another paramter of color and it appears to have resolved the issue.
var handler = StripeCheckout.configure({
key: '******************',
image: '/assets/images/layout-images/stripe-logo.jpg',
color: 'black',
token: function(token) {
// Use the token to create the charge with a server-side script.
// You can access the token ID with `token.id`
}
});
weird as im not quite sure why it wasnt included in the docs.