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
PaymentSession.onMouseOut([HostedFieldsRole], function(selector));
Example
PaymentSession.onMouseOut(['cardNumber','securityCode'], function(selector) {
    //handle mouse out event
});
Arguments
        HostedFieldsRole
        
        Array
        
    
    An array of field roles for the hosted fields where the event occurred. Valid array of field roles:
cardNumber
            securityCode
            
        callbackFunction
        
        Function
        
    The callback function invoked with the selector for the field whose proxy triggered the event.
Return Value
None