Gecko userAgents

Skyzyx

Registered
I'm working on a web design project, and I just need to know what the JavaScript navigator.userAgent value is for Mozilla, Netscape 6/7, and AOL all under the MacOSX platform. I'm focusing on Gecko in this project.

This information would help me out ALOT, since I don't have access to a MacOSX computer.

This is your browsers userAgent value.
Code:
<html>
<body>
<script language="javascript">
document.write(navigator.userAgent);
</script>
</body>
</html>

I don't have time to go to CompUSA and try this on their computers, so any help I can get is much appreciated.

Thanks!
 
Chimera 0.4:

Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-US; rv:1.0.0) Gecko/20020724

Good luck.
 
Back
Top