W3cubDocs

/Web APIs

ContactAddress

Secure context: This feature is available only in secure contexts (HTTPS), in some or all supporting browsers.

Experimental: This is an experimental technology
Check the Browser compatibility table carefully before using this in production.

The ContactAddress interface of the Contact Picker API represents a physical address. Instances of this interface are retrieved from the address property of the objects returned by ContactsManager.getProperties().

It may be useful to refer to the Universal Postal Union website's Addressing S42 standard materials, which provide information about international standards for postal addresses.

Instance properties

Inherits properties from its parent, PaymentAddress.

Instance methods

Inherits methods from its parent, PaymentAddress.

Examples

The following example prompts the user to select contacts, then prints the first returned address to the console.

const props = ["address"];
const opts = { multiple: true };

async function getContacts() {
  try {
    const contacts = await navigator.contacts.select(props, ops);
    const contactAddress = contacts[0].address[0];
    console.log(contactAddress);
  } catch (ex) {
    // Handle any errors here.
  }
}

Specifications

Browser compatibility

Desktop Mobile
Chrome Edge Firefox Internet Explorer Opera Safari WebView Android Chrome Android Firefox for Android Opera Android Safari on IOS Samsung Internet
ContactAddress No No No No No No 84 84 No 60 No 14.0
addressLine No No No No No No 84 84 No 60 No 14.0
city No No No No No No 84 84 No 60 No 14.0
country No No No No No No 84 84 No 60 No 14.0
dependentLocality No No No No No No 84 84 No 60 No 14.0
organization No No No No No No 84 84 No 60 No 14.0
phone No No No No No No 84 84 No 60 No 14.0
postalCode No No No No No No 84 84 No 60 No 14.0
recipient No No No No No No 84 84 No 60 No 14.0
region No No No No No No 84 84 No 60 No 14.0
sortingCode No No No No No No 84 84 No 60 No 14.0
toJSON No No No No No No 84 84 No 60 No 14.0

© 2005–2023 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/ContactAddress