navigator 예제 (각 브라우저 정보)
<!DOCTYPE html>
<html>
<head>
<meta charset="EUC-KR">
<title>브라우저 정보 알아보기</title>
</head>
<body>
<script type="text/javascript">
document.write("<h1>"+navigator.appCodeName+"</h1>");
document.write("<h1>"+navigator.appName+"</h1>");
document.write("<h1>"+navigator.appVersion+"</h1>");
document.write("<h1>"+navigator.platform+"</h1>");
document.write("<h1>"+navigator.userAgent+"</h1>");
document.write("<h1>"+navigator.javaEnabled()+"</h1>");
</script>
</body>
</html>