Firefox Tomorrow

web api instance method

ClipboardItem: getType() method

View on MDN ↗

Secure context

The getType() method of the ClipboardItem interface returns a Promise that resolves with a Blob of the requested MIME type or an error if the MIME type is not found.

Syntax

getType(type)

Parameters

Return value

A Promise that resolves with a Blob object.

Exceptions

Examples

In the following example, we’re returning all items on the clipboard via the read() method. For each one, we pass the types property to the getType() method, which returns the corresponding Blob object.

async function getClipboardContents() {
  try {
    const clipboardItems = await navigator.clipboard.read();

    for (const clipboardItem of clipboardItems) {
      for (const type of clipboardItem.types) {
        const blob = await clipboardItem.getType(type);
        // we can now use blob here
      }
    }
  } catch (err) {
    console.error(err.name, err.message);
  }
}

Specifications

SpecificationsStandards references are available on the canonical MDN page.

Browser compatibility

Browser compatibilityCompatibility data is available on the canonical MDN page.

See also