Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

how to reference document html title in netscape 4.5 / 4.7 ?

Status
Not open for further replies.

debrac

IS-IT--Management
Jan 9, 2001
48
0
0
AU
how can i reference document html title in netscape 4.5 / 4.7 with javascript?
document.title, self.title, window.title, window.document.title - all do NOT work....

 
this worked for me in ns 4.61:

<html><head><title>The Title</title>
<script>
onload=function(){ alert(document.title) }
</script>
</head>
<body bgcolor=&quot;#FFFFFF&quot;>
</body>
</html>
Victor
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top