Plugin.filename : Plugin « Document « JavaScript Tutorial
- JavaScript Tutorial
- Document
- Plugin
The filename property gets the path and filename for a plug-in.
<html>
<head>
<title> Example of the plugin filename property</title>
</head>
<body>
<script language="JavaScript">
<!--
document.write(navigator.plugins[0].filename);
-->
</script>
</body>
</html>