Get the browser version through navigator.appVersion : navigator « Javascript Objects « JavaScript DHTML
- JavaScript DHTML
- Javascript Objects
- navigator
Get the browser version through navigator.appVersion
<html>
<head>
</head>
<body>
<script type="text/javascript">
document.write(parseFloat(navigator.appVersion));
document.close()
</script>
</body>
</html>
Related examples in the same category