'description' Example : mimeType « Javascript Objects « JavaScript DHTML
- JavaScript DHTML
- Javascript Objects
- mimeType
'description' Example
<html>
<body>
<button onclick="alert(navigator.mimeTypes[0].description);">mimetype</button>
<button onclick="alert(navigator.mimeTypes[0].suffixes);">suffixes</button>
<button onclick="alert(navigator.mimeTypes[0].type);">type</button>
</body>
</html>
Related examples in the same category