Events
Last updated
Was this helpful?
Last updated
Was this helpful?
Events are fired by Tebex.js upon specific actions to alert your frontend and enable you to take action when required. These events should not be used to confirm actual receipt of payment - you should use instead.
To add an event callback, use Tebex.checkout.on()
. The first argument to this function should be the name of the event to listen to, and the second argument should be a function to call when that function is fired:
Available events are as follows:
"open"
The checkout popup opening.
"close"
The checkout popup closing.
"payment:complete"
The customer has successfully completed their payment.
"payment:error"
The customer experienced an error, such as incorrect card details or insufficient funds, when making a payment.
All events that can be listened to with are exposed on the element as custom DOM events, which means you can use addEventListener to subscribe to them: