Login   Register  
Icontem

File: Sample.html

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Dixan Santiesteban  >  Plugins Detect  >  Sample.html  >  Download  
File: Sample.html
Role: Example script
Content type: text/plain
Description: The Sample Document
Class: Plugins Detect
Detect what plugins are available in the browser
Author: By
Last change:
Date: 2012-06-25 21:26
Size: 952 bytes
 

Contents

Class file image Download
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><script type="text/javascript" src="plugins.js"></script>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Plugins Detect</title>
</head>

<body>

</body>
</html>
<script>
	//alert(pluginlist)
	var aa=new allplugins();
	
	document.write("SVG Viewer:<b> "+aa.svg +"</b><br>");
	document.write("Shockwave Director:<b> "+aa.director +"</b><br>");
	document.write("Shockwave Flash:<b> "+aa.flash +"</b><br>");
	document.write("RealPlayer:<b> "+aa.realplayer +"</b><br>");
	document.write("QuickTime:<b> "+aa.quicktime +"</b><br>");
	document.write("Windows Media Player:<b> "+aa.wmp+"</b><br>");	
	document.write("Acrobat Reader:<b> "+aa.areader+"</b><br>");	
	document.write("Java:<b> "+aa.java+"</b><br>");	
	


	
</script>