PaymentAddress.careOf

Deprecated
This feature has been removed from the Web standards. Though some browsers may still support it, it is in the process of being dropped. Avoid using it and update existing code if possible; see the compatibility table at the bottom of this page to guide your decision. Be aware that this feature may cease to work at any time.

This is an experimental technology
Because this technology's specification has not stabilized, check the compatibility table for usage in various browsers. Also note that the syntax and behavior of an experimental technology is subject to change in future versions of browsers as the specification changes.

The careOf read-only property of the PaymentAddress interface returns a string containing the name of an intermediary party or entity responsible for transferring packages between the postal service and the recipient.

Syntax

var paymentCareOf = PaymentAddress.careOf;

Example

In the example below, the various properties of the PaymentAddress object are retrieved into individual variables for later use, with the exception of the addressLine array property, which is copied into another array.

var pmtcountry = PaymentAddress.country;
var pmtaddress = PaymentAddress.addressLine.slice(0);
var pmtregion = PaymentAddress.region;
var pmtcity = PaymentAddress.city;
var pmtdeploc = PaymentAddress.dependentLocality;
var pmtpostal = PaymentAddress.postalCode;
var pmtsorting = PaymentAddress.sortingCode;
var pmtlang = PaymentAddress.languageCode;
var pmtorg = PaymentAddress.organization;
var pmtrecip = PaymentAddress.recipient;
var pmtcareof = PaymentAddress.careOf;
var pmtphone = PaymentAddress.phone;

Specifications

Specification Status Comment
Payment Request API
The definition of 'paymentaddress' in that specification.
Working Draft Initial definition.

Browser Compatibility

Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari (WebKit)
Basic support

53.0

? ? ? ?
Removed

56.0

       
Feature Android Android Webview Firefox Mobile (Gecko) Firefox OS IE Mobile Opera Mobile Safari Mobile Chrome for Android
Basic support No support 53.0 ? ? ? ? ? 53.0
Removed No support

56.0

         

56.0

Document Tags and Contributors

 Contributors to this page: jpmedley, dgashmdn
 Last updated by: jpmedley,