PaymentRequest: paymentmethodchange event
{{securecontext_header}}
{{APIRef("Payment Request API")}}
The paymentmethodchange
event is delivered the Payment Request API to a {{domxref("PaymentRequest")}}
object when the user changes the payment method within a given payment handler.
For example, if the user switches from one credit card to another on their Apple Pay account, a paymentmethodchange
event is fired to let you know about the change.
This event is not cancelable and does not bubble.
Syntax
Use the event name in methods like {{domxref("EventTarget.addEventListener", "addEventListener()")}}
, or set an event handler property.
addEventListener("paymentmethodchange", (event) => {});
onpaymentmethodchange = (event) => {};
Event type
A {{domxref("PaymentMethodChangeEvent")}}
. Inherits from {{domxref("Event")}}
.
{{InheritanceDiagram("PaymentMethodChangeEvent")}}
Event properties
In addition to the properties below, this interface includes properties inherited from {{domxref("PaymentRequestUpdateEvent")}}
.
{{domxref("PaymentMethodChangeEvent.methodDetails", "methodDetails")}}
{{ReadOnlyInline}}
- : An object containing payment method-specific data useful when handling a payment method change. If no such information is available, this value is
null
.
- : An object containing payment method-specific data useful when handling a payment method change. If no such information is available, this value is
{{domxref("PaymentMethodChangeEvent.methodName", "methodName")}}
{{ReadOnlyInline}}
- : A string containing the payment method identifier, a string which uniquely identifies a particular payment method. This identifier is usually a URL used during the payment process, but may be a standardized non-URL string as well, such as
basic-card
. The default value is the empty string,""
.
- : A string containing the payment method identifier, a string which uniquely identifies a particular payment method. This identifier is usually a URL used during the payment process, but may be a standardized non-URL string as well, such as
Examples
Let’s take a look at an example. This code creates a new {{domxref("PaymentRequest")}}
, adds a handler for the paymentmethodchange
event by calling the request’s {{domxref("EventTarget.addEventListener", "addEventListener()")}}
, then calls {{domxref("PaymentRequest.show", "show()")}}
to present the payment interface to the user.
The code assumes the existence of a method detailsForTransaction()
, which will return an object that can be passed as the details
argument to the PaymentRequest
constructor.
const paymentRequest = new PaymentRequest(
paymentMethods,
detailsForTransaction(),
);
paymentRequest.addEventListener(
"paymentmethodchange",
handlePaymentChange,
false,
);
paymentRequest
.show()
.then((response) => response.complete("success"))
.catch((err) => console.error(`Error handling payment request: ${err}`));
The event handler function itself, handlePaymentChange()
, looks like this:
handlePaymentChange = (event) => {
const detailsUpdate = {};
if (event.methodName === "https://apple.com/apple-pay") {
const serviceFeeInfo = calculateServiceFee(event.methodDetails);
Object.assign(detailsUpdate, serviceFeeInfo);
}
event.updateWith(detailsUpdate);
};
This begins by looking at the event’s {{domxref("PaymentMethodChangeEvent.methodName", "methodName")}}
property; if that indicates that the user is trying to use Apple Pay, we pass the {{domxref("PaymentMethodChangeEvent.methodDetails", "methodDetails")}}
into a function called calculateServiceFee()
, which we might create to take the information about the transaction, such as the underlying credit card being used to service the Apple Pay request, and compute and return an object that specifies changes to be applied to the {{domxref("PaymentRequest")}}
in order to add any service fees that the payment method might require.
Before the event handler returns, it calls the event’s {{domxref("PaymentRequestUpdateEvent.updateWith()", "updateWith()")}}
method to integrate the changes into the request.
Specifications
{{Specifications}}
Browser compatibility
{{Compat}}
See also
- Payment Request API
- Using the Payment Request API
{{domxref("PaymentRequest.merchantvalidation_event", "merchantvalidation")}}
event{{domxref("PaymentRequest.shippingaddresschange_event", "shippingaddresschange")}}
event{{domxref("PaymentRequest.shippingoptionchange_event", "shippingoptionchange")}}
event