3D_Dog_Man
05-03-2004, 09:35 AM
Hey Everyone,
I have the following script which is working in IE6 but not in NS6+ or Mozilla
<html>
<head>
<title>Testing Browser Version</title>
<script type="text/javascript">
function tellMe()
{
var stringValue = new Array();
stringValue[0] = navigator.appCodeName;
stringValue[1] = navigator.appName;
stringValue[2] = navigator.appVersion;
stringValue[3] = navigator.language;
stringValue[4] = navigator.platform;
stringValue[5] = navigator.userAgent;
document.write('<table width="100%">');
for(i=0; i<stringValue.length; i++)
{
document.write('<tr align="center"><td width="50%">' + stringValue[i] + '</td></tr>');
}
document.write('</table>');
}
</script>
<body onload="tellMe()">
</body>
</html>
Could somebody please explain why this script will not work in any modern browser other than IE? Any help will be really appreciated.
Thanks
Regards
David
I have the following script which is working in IE6 but not in NS6+ or Mozilla
<html>
<head>
<title>Testing Browser Version</title>
<script type="text/javascript">
function tellMe()
{
var stringValue = new Array();
stringValue[0] = navigator.appCodeName;
stringValue[1] = navigator.appName;
stringValue[2] = navigator.appVersion;
stringValue[3] = navigator.language;
stringValue[4] = navigator.platform;
stringValue[5] = navigator.userAgent;
document.write('<table width="100%">');
for(i=0; i<stringValue.length; i++)
{
document.write('<tr align="center"><td width="50%">' + stringValue[i] + '</td></tr>');
}
document.write('</table>');
}
</script>
<body onload="tellMe()">
</body>
</html>
Could somebody please explain why this script will not work in any modern browser other than IE? Any help will be really appreciated.
Thanks
Regards
David