On Update End
Update-end event
Last verified 2026-09-27
Is this helpful?
Stripe
4105 articles
elements.on(event: 'update-end', handler: function) Triggered when the call to elements.update() is complete. - event The name of the event. In this case, update-end. - handler handler() => void is a callback function that you provide that will be called when the event is fired. ### Example title Handle an Elements update-end event Is this helpful?