'navigator' Example : navigator « Javascript Objects « JavaScript Reference

'navigator' Example

    
<html>
<head>
<script language="JavaScript">
function function1() {
    var m = navigator.appName;
    alert("The name of your browser is "+'"'+m+'"');
}
</script>
</head>
<body >
<input type="button" value="Click here" onClick="function1();">
</body>
</html>

    
      
      








Related examples in the same category

1.'navigator' Syntax and Note
2.'navigator' JavaScript Properties
3.'navigator' JavaScript Methods
4.'navigator' JavaScript Collections
5.'navigator' JavaScript Objects
6.'navigator' is applied to