W3cubDocs

/DOM

MimeTypeArray

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

The MimeTypeArray interface returns an array of MimeType instances, each of which contains information about a supported browser plugins. This object is returned by NavigatorPlugins.mimeTypes.

Properties

MimeTypeArray.length
The number of items in the array.

Methods

MimeTypeArray.item()
Returns the MimeType object with the specified index.
MimeTypeArray.namedItem()
Returns the MimeType object with the specified name.

Example

The following example tests whether a plugin is available for the application/pdf mime type and if so, which plugin that is.

var mimeTypes = navigator.MimeType;
var flashPlugin = mimeTypes['video/x-flv'];
if (typeof flashPlugin === "undefined") {
  var vid = document.createElement('video');
  // Use vid.canPlayType() to test for a supported mime type.
} else {
  // Notify the user that flash is being deprecated and they
  //   should upgrade their browser.
}

Specifications

Specification Status Comment
HTML Living Standard
The definition of 'MimeTypeArray' in that specification.
Living Standard Initial definition.

Browser Compatibility

Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari (WebKit)
Basic support (Yes) ? ? ? ?
Method parameters change from optional to required. 59 ? ? ? ?
Feature Android Webview Chrome for Android Firefox Mobile (Gecko) Firefox OS IE Mobile Opera Mobile Safari Mobile
Basic support (Yes) (Yes) ? ? ? ? ?
Method parameters change from optional to required. 59 59 ? ? ? ? ?

© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/MimeTypeArray