TITLENN n/a   IE 4   DOM 1

The TITLE object reflects the TITLE element. The Win32 version of Internet Explorer 4 may exhibit problems when referencing the TITLE object by its element ID. Use the tags[] collection reference instead.

 
HTML Equivalent
<TITLE>
 
Object Model Reference
IE [window.]document.all.elementID
[window.]document.all.tags("HEAD")[0]
textNN n/a   IE 4   DOM n/a
 Read-only
 

The text content of the element. For the TITLE element, this is the text between the start and end tags that also appears in the browser window's titlebar (usually along with some identification of the browser brand). Changes you make to this property do not appear in the source code you view from the browser.

 
Example
document.all.tags("HEAD")[0].text = "Welcome, Dave!"
 
Value
String.
 
Default None.