'description' Example : mimeType « Javascript Objects « JavaScript DHTML






'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

1.'suffixes' Example
2.'type' Example