Browser Detector




The code to do this

<script>
<!--
function getBrowserName() {
document.forms[0].elements[0].value=navigator.appName;
}
</script>
</head>
<center>
<form name="detect">
<input type="text" name="browser" size=42 value="Browser Detector"><br>
<input type="button" value="Click the Button to See Your Browser Type" onClick="getBrowserName()">
</form>
</center>