THE WORLD'S LARGEST WEB DEVELOPER SITE
HTMLCSSJAVASCRIPTSQLPHPBOOTSTRAPJQUERYANGULARXML
 

HTML DOM Title Object


Title Object

The Title object represents an HTML <title> element.

Access a Title Object

You can access a <title> element by using getElementsByTagName():

Example

var x = document.getElementsByTagName("TITLE")[0];
Try it Yourself »

Create a Title Object

You can create a <title> element by using the document.createElement() method:

Example

var x = document.createElement("TITLE");
Try it Yourself »

Title Object Properties

Property Description
text Sets or returns the text of the document's title

Standard Properties and Events

The Title object also supports the standard properties and events.


Related Pages

HTML tutorial: HTML Head

HTML reference: HTML <title> tag