Home Articles FAQs XREF Games Software Instant Books BBS About FOLDOC RFCs Feedback Sitemap
irt.Org
#

Q436 How do I amend the title of the current document?

You are here: irt.org | FAQ | JavaScript | Document | Q436 [ previous next ]

You can try amending the title property - in older browsers this property is read only. You can do is something like:

<script LANGUAGE="JavaScript"><!--
window.title = 'This is *my* title';
//--></script>

Paul Fazio writes:

In Internet Explorer 5.x (I haven't tried it in Internet Explorer 4.x yet) you can use:

document.title = "Your new title";

to place the date and time in the title bar, and even to create a real time clock in the title bar by updating the title every second.

Feedback on 'Q436 How do I amend the title of the current document?'

©2018 Martin Webb