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






'type' Example

    
<html>
<body>
<button onclick="alert(navigator.mimeTypes[0].description);">mime</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.'description' Example
2.'suffixes' Example