#Stilo

1 messages · Page 1 of 1 (latest)

dawn pelicanBOT
rancid prism
#

Hello, can you send me a link to this page?

#

Is this your own custom page or is this a Stripe hosted Checkout page?

rancid prism
#

It looks like handleSubmit isn't defined in your code and that is causing the javascript to error out more generally

daring shell
#

@rancid prism

rancid prism
#

Oh actually reading the error, it looks like the code is having an issue finding payment-form on your page

#

It sounds like that is the thing to debug on your page

#

I do see that name in your HTML but this seems to mostly be an issue with that querySelector call

daring shell
#

hhmm

#

What I can do?

rancid prism
#

Maybe try something like this instead?
var form = document.getElementById('payment-form');

#

Unfortunately at this point this is more of a generic HTML + JS error and I am less familiar with debugging those here