does anyone know how to access the meta tag using javascript and netscape.
here's what i have and when i open it in IE it works, but i see nothing when i try it in netscape.
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<META NAME="Author" content="MI">
<script language="JavaScript">
function dates(){
document.write("Author: " + Author.content);
}
</script>
</head>
<body bgcolor="#FFFFFF">
<SCRIPT LANGUAGE="JavaScript1.2">
<!--
dates()
//--></script>
</body>
</html>
here's what i have and when i open it in IE it works, but i see nothing when i try it in netscape.
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<META NAME="Author" content="MI">
<script language="JavaScript">
function dates(){
document.write("Author: " + Author.content);
}
</script>
</head>
<body bgcolor="#FFFFFF">
<SCRIPT LANGUAGE="JavaScript1.2">
<!--
dates()
//--></script>
</body>
</html>