x
1
2
<html>
3
<body>
4
5
<h1>JavaScript Window Navigator Browser Agent</h1>
6
<p id="agent">userAgent property returns the user-agent header sent by the browser to the server</p>
7
<script>
8
document.getElementById("agent").innerHTML =
9
"navigator.userAgent is " + navigator.userAgent;
10
</script>
11
12
</body>
13
</html>