Go Back   CodingForums.com > :: Client side development > JavaScript programming > DOM and JSON scripting

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 05-03-2004, 09:35 AM   PM User | #1
3D_Dog_Man
New Coder

 
Join Date: Feb 2004
Posts: 30
Thanks: 0
Thanked 0 Times in 0 Posts
3D_Dog_Man is an unknown quantity at this point
Help required with making this script work in NS and Mozilla

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
3D_Dog_Man is offline   Reply With Quote
Old 05-03-2004, 10:19 AM   PM User | #2
coothead
Senior Coder

 
coothead's Avatar
 
Join Date: Jan 2004
Location: chertsey, a small town 25 miles south west of london, england.
Posts: 1,555
Thanks: 0
Thanked 196 Times in 192 Posts
coothead will become famous soon enough
Hi there 3D_Dog_Man,

I cannot explain why it does not work for you
It works just fine for me in...
  • firefox 0.8
  • Mozilla 1.6
  • Netscape 7.0
  • Opera 7.0
...apart from every one's favourite browser I.E.

coothead
coothead is offline   Reply With Quote
Reply

Bookmarks

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 08:58 PM.


Advertisement
Log in to turn off these ads.