WT 3
WT 3
OBJECTIVE:
PROGRAM:
<!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 runat="server">
<title>Google map using Java script</title>
<script language=javascript>
function show() {
document.write("Name " + navigator.appName + "<br>");
document.write("Version " + navigator.appVersion + "<br>");
document.write("Codename " + navigator.appCodeName + "<br>");
document.write("Cookie enable" + navigator.cookieEnabled + "<br>");
document.write("Java Enable" + navigator.javaEnabled + "<br>");
document.write("Mime type" + navigator.mimeTypes + "<br>");
document.write("Platform" + navigator.platform + "<br>");
document.write("Plug ins" + navigator.plugins + "<br>");
document.write("System Language" + navigator.systemLanguage + "<br>");
document.write("User language" + navigator.userAgent + "<br>");
document.write("User Agent" + navigator.userAgent + "<br>");
} </script>
</head>
<body>
<form id="form1">
<div>
<input id="Button1" type="button" value="Click me" onclick="show()" />
</div>
</form>
</body>
</html>
OUTPUT: