EH??? Come again? What is this common code name? Can you type out this common code name for us? Not the meaning, just the actual code name which you say is common.meet_me said:Hey guys,
Does anyone know what is meant by a Code name? Also, why does IE and Firefox have the same code name??
Thanks!!!
<script type = "text/javascript">
var space = ", ";
var name = navigator.appName;
var codename = navigator.appCodeName;
var version = navigator.appVersion.substring(0,4);
var platform = navigator.platform;
var MyjavaEnabled = navigator.javaEnabled();
var screenWidth = screen.width;
var screenHeight = screen.height;
document.writeln("
"+name+space+codename+space+"
");
document.writeln("
"+version+space+platform+space+"
");
document.writeln("
"+MyjavaEnabled+"
"+screenWidth+space+"
");
document.writeln("
"+screenHeight+space+"
");
</script>