HTML DOM title Property
More "Try it Yourself" examples below.
Definition and Usage
The title property sets or returns the title of the current document (the text inside the HTML title element).
Browser Support
| Property | |||||
|---|---|---|---|---|---|
| title | Yes | Yes | Yes | Yes | Yes |
Syntax
Return the title property:
document.title
Set the title property:
document.title = newTitle
Property Values
| Value | Description |
|---|---|
| newTitle | Specifies a new title text |
Technical Details
| Return Value: | A String, representing the title of the document |
|---|---|
| DOM Version | Core Level 2 Document Object |
More Examples
Related Pages
HTML reference: HTML <title> tag
JavaScript reference: HTML DOM Title Object
❮ Document Object

