<html>
<head>
<title> Example of how to determine the available MimeTypes</title>
</head>
<body>
<script language="JavaScript">
<!--
for (i=0; i < 3; i++) {
document.writeln(navigator.mimeTypes[i].type+" ");
document.writeln(navigator.mimeTypes[i].description+" ");
document.writeln(navigator.mimeTypes[i].suffixes+" ");
document.writln("<br>");
}
-->
</script>
</body>
</html>
|