Session
onMouseOut
onMouseOut Callback
The onMouseOut( ) callback invokes the function registered against this event when the payer's mouse pointer moves away from the hosted field in the iFrame.
Usage Copied to clipboard
PaymentSession.onMouseOut([HostedFieldsRole], function(selector, role), [scope]);
Example Copied to clipboard
PaymentSession.onMouseOut(['card.number', 'card.securityCode'], function(selector, role) { //handle mouse out event });
Arguments Copied to clipboard
HostedFieldsRole
Copied to clipboard
Array
REQUIRED
An array of field roles for the hosted fields where the event occurred. Valid array of field roles:
card.nameOnCard
card.number
card.expiryMonth
card.expiryYear
card.securityCode
giftCard.number
giftCard.pin
ach.bankAccountNumber
ach.bankAccountNumberConfirmation
ach.bankAccountHolder
ach.routingNumber
directDebitCanada.bankAccountNumberConfirmation
directDebitCanada.bankAccountHolder
directDebitCanada.bankAccountNumber
directDebitCanada.financialInstitutionNumber
directDebitCanada.transitNumber
callbackFunction
Copied to clipboard
Function
The callback function invoked with the selector and the role for the field whose proxy triggered the event.
selector
Copied to clipboard
String
Identifier of the HTML element where the merchant moved mouse out of field (ex: "#card-number").
role
Copied to clipboard
String
Valid array of field roles:
number
nameOnCard
expiryMonth
expiryYear
securityCode
pin
bankAccountNumber
bankAccountNumberConfirmation
bankAccountHolder
routingNumber
financialInstitutionNumber
transitNumber
scope
Copied to clipboard
String
The optional named instance of a card payment data set within a session. See Multiple Hosted Sessions for more information.
Return Value Copied to clipboard
None